@section('page-title', 'Customer Form Field Settings')
Enable or disable fields that appear on the product verification form.
{{ session('message') }}
| Field Name | Placeholder | Visible | Required |
|---|---|---|---|
|
{{ $field['name'] }}
@if(in_array($field['unique_key'], ['name', 'email', 'contact']))
Base Field
@endif
{{ $field['unique_key'] }}
|
@if($editingPlaceholder === $field['id'])
{{ $field['placeholder'] }}
@endif
|
{{ $field['visible'] ? 'ON' : 'OFF' }}
|
{{ $field['required'] ? 'ON' : 'OFF' }}
|
|
{{ $pincodeField['name'] }}
Always Required
{{ $pincodeField['unique_key'] }}
|
@if($editingPlaceholder === $pincodeField['id'])
{{ $pincodeField['placeholder'] }}
@endif
|
Always ON
|
Always ON
|