{{ __('Add new custom field') }}

@if (session('success'))
{{ session('success') }}
@endif
@csrf
{{ $ogForm->title }}

Example: test, site_address (letters/numbers/underscore only)

col-md-
Flags
Visibility
Save

Existing fields

@foreach(($ogForm->fields ?? []) as $field) @php if (!is_array($field)) continue; $name = $field['name'] ?? ''; if ($name === 'lead_id') continue; @endphp @endforeach
Name Label Type Grid Flags
{{ $name }} {{ $field['label'] ?? '' }} {{ $field['type'] ?? '' }} {{ $field['grid_class'] ?? '' }} @if(!empty($field['required'])) req @endif @if(!empty($field['disabled'])) dis @endif @if(!empty($field['admin_only'])) admin @endif @if(!empty($field['show_on_table'])) table @endif @if(!empty($field['show_on_client_portal'])) portal @endif