@php
$chatGPT = \App\Models\Utility::settings('enable_chatgpt');
$enable_chatgpt = !empty($chatGPT);
@endphp
{{ Form::model($customField, ['route' => ['custom-field.update', $customField->id], 'method' => 'PUT','class'=>'needs-validation','novalidate']) }}
@if ($enable_chatgpt)
@endif
{{ Form::label('name', __('Custom Field Name'), ['class' => 'form-label']) }}
{{ Form::text('name', null, ['class' => 'form-control', 'required' => 'required', 'placeholder'=>__('Enter Custom Field Name')]) }}
{{ Form::close() }}