{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title') }}
{{ html()->label('Type')->class('form-label') }} {{ html()->select('type', [1 => 'Promotion', 2 => 'Demotion'])->class('form-select')->placeholder('Select Type') }}
{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
{{ html()->label('Previous Designation')->class('form-label') }} {{ html()->select('old_designation_id')->class('form-select')->placeholder('Select Previous Desgination') }}
{{ html()->label('New Designation')->class('form-label') }} {{ html()->select('new_designation_id')->class('form-select')->placeholder('Select New Desgination') }}
{{ html()->label('Date')->class('form-label') }} {{ html()->date('date')->class('form-control')->placeholder('Select Date') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->attributes(['rows' => 5]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 5]) }}
{{ html()->button($editable ? 'Update' : 'Add Promotion/ Demotion', 'submit')->class('btn btn-success') }}