27 lines
1006 B
PHP
27 lines
1006 B
PHP
<div class="row gy-3">
|
|
|
|
<div class="col-lg-4 col-md-6">
|
|
{{ html()->label('Employee')->class('form-label') }}
|
|
{{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
|
|
</div>
|
|
|
|
<div class="col-lg-4 col-md-6">
|
|
{{ html()->label('Resignation Date')->class('form-label') }}
|
|
{{ html()->date('resignation_date')->class('form-control')->placeholder('Select Resignation Date') }}
|
|
</div>
|
|
|
|
<div class="col-lg-12 col-md-12">
|
|
{{ html()->label('Reason')->class('form-label') }}
|
|
{{ html()->textarea('description')->class('form-control')->placeholder('Write reason for resgination')->attributes(['rows' => 3]) }}
|
|
</div>
|
|
|
|
<div class="col-lg-12 col-md-12">
|
|
{{ html()->label('Remarks')->class('form-label') }}
|
|
{{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
|
|
</div>
|
|
|
|
<div class="text-end">
|
|
{{ html()->button($editable ? 'Update' : 'Add Resignation', 'submit')->class('btn btn-success') }}
|
|
</div>
|
|
</div>
|