{{ html()->label('Customer Name')->class('form-label') }} {{ html()->select('customer_id', $customerList)->class('form-control select2')->placeholder('Customer Name')->required() }}
{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Estimate Title')->required() }} {{ html()->div('Please enter estimate title')->class('invalid-feedback') }}
{{ html()->label('Date')->class('form-label') }} {{ html()->text('date')->class('form-control flatpickr-date')->placeholder('Estimate Date')->required() }} {{ html()->div('Please enter estimate date')->class('invalid-feedback') }}
{{ html()->label('Validity')->class('form-label') }} {{ html()->text('validity')->class('form-control flatpickr-date')->placeholder('Validity Date')->required() }} {{ html()->div('Please enter validity date')->class('invalid-feedback') }}
{{ html()->label('Approver Name')->class('form-label') }} {{ html()->select('approval_by', $customerList)->class('form-control select2')->placeholder('Approver Name') }}
{{ html()->label('Approval Date')->class('form-label') }} {{ html()->text('approval_on')->class('form-control flatpickr-date')->placeholder('Approval Date') }} {{ html()->div('Please enter approval date')->class('invalid-feedback') }}
{{ html()->label('Conditions')->class('form-label') }} {{ html()->textarea('conditions')->class('form-control')->placeholder('Conditions')->attributes(['rows' => 3]) }}
Approval Status
{{ html()->label('Status')->class('form-label') }} {{ html()->select('approval_status', $approvalStatusList)->class('form-control select2')->placeholder('Approval Status')->required() }} {{ html()->div('Please enter approval status')->class('invalid-feedback') }}
@push('js') @endpush