{{-- --}}
Basic Info
@error('form.first_name')
{{ $message }}
@enderror
@error('form.last_name')
{{ $message }}
@enderror
@if($collection_columns && $collection_columns->count() > 0) @foreach($collection_columns as $key => $column) @php $column_field = $collection_fields[$column->field->slug]; $options_array = $this->collection_fields[$column->field->slug]['options']; @endphp
@if($column->field->type == 'text') @elseif($column->field->type == 'email') @elseif($column->field->type == 'date') {{-- --}} @elseif($column->field->type == 'textarea') @elseif($column->field->type == 'select') @elseif($column->field->type == 'radio') @foreach($options_array as $key => $value)
@endforeach @elseif($column->field->type == 'checkbox') @foreach($options_array as $key => $value)
@endforeach @endif @error('form.custom_fields.{{ $column->field->slug }}')
{{ $message }}
@enderror
@endforeach @endif
{{-- /Basic Info --}}