{{ html()->label('Resigner')->class('form-label') }} {{ html()->select('employee_id', $employeeLists)->class('form-select select2')->placeholder('Resigner')->required() }} {{ html()->div('Please select Resigner')->class('invalid-feedback') }}
{{ html()->label('Employee')->class('form-label') }} {{ html()->select('resignation_type', \Modules\Admin\Models\Resignation::RESIGNATION_TYPE)->class('form-select select2')->placeholder('Resignation Type')->required() }} {{ html()->div('Please select resignation_type')->class('invalid-feedback') }}
{{ html()->label('Resignation Date')->class('form-label') }} {{ html()->date('resignation_date')->class('form-control')->placeholder('Select Resignation Date')->required() }} {{ html()->div('Please select resignation_date')->class('invalid-feedback') }}
{{ html()->label('Reason')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->placeholder('Write reason for resgination')->attributes(['rows' => 3]) }}
@push('js') @endpush