{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
{{ html()->label('Resignation Date')->class('form-label') }} {{ html()->date('resignation_date')->class('form-control')->placeholder('Select Resignation Date') }}
{{ html()->label('Reason')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->placeholder('Write reason for resgination')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
{{ html()->button($editable ? 'Update' : 'Add Resignation', 'submit')->class('btn btn-success') }}