{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id', $employeeLists)->class('form-select select2')->placeholder('Employee Name') }}
{{ html()->label('Account Number')->class('form-label') }} {{ html()->text('account_no')->class('form-control')->placeholder('Bank Account Number') }}
{{ html()->label('Payment Date')->class('form-label') }} {{ html()->date('payment_date')->class('form-control')}}
{{ html()->label('Payment Amount')->class('form-label') }} {{ html()->number('payment_amount')->class('form-control')->placeholder('total Amount in RS.')}}
{{ html()->label('Payment Mode')->class('form-label') }} {{ html()->select('payment_mode', \Modules\Payroll\Models\Payment::PAYMENT_MODE)->class('form-select select2')->placeholder('Payment Mode') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->placeholder('Payment Description')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
{{ html()->button($editable ? 'Update' : 'Add Payment', 'submit')->class('btn btn-success') }}