@if (isset($enable_chatgpt) && !empty($enable_chatgpt))
@endif
{{ Form::label('quantity', __('Quantity'), ['class' => 'form-label']) }}
{{ Form::text('quantity', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Enter Quantity')]) }}
{{ Form::label('description', __('Description'), ['class' => 'form-label']) }}
{!! Form::textarea('description', null, ['class' => 'form-control', 'rows' => '2', 'placeholder' => __('Enter Description')]) !!}
@if(!$customFields->isEmpty())
@include('customFields.formBuilder')
@endif