{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }} {{ html()->div('Please add title')->class('invalid-feedback') }}
{{ html()->label('Type')->class('form-label') }} {{ html()->select('type', ['promotion' => 'Promotion', 'demotion' => 'Demotion'])->class('form-select select2')->placeholder('Select Type')->required() }} {{ html()->div('Please select type')->class('invalid-feedback') }}
{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id', $employeeLists)->class('form-select select2')->placeholder('Select Employee')->required() }} {{ html()->div('Please select employee')->class('invalid-feedback') }}
{{ html()->label('Previous Designation')->class('form-label') }} {{ html()->select('old_designation_id', $designationLists)->class('form-select select2')->placeholder('Select Previous Desgination')->required() }} {{ html()->div('Please select previous designation')->class('invalid-feedback') }}
{{ html()->label('New Designation')->class('form-label') }} {{ html()->select('new_designation_id', $designationLists)->class('form-select select2')->placeholder('Select New Desgination')->required() }} {{ html()->div('Please select new designation')->class('invalid-feedback') }}
{{ html()->label('Date')->class('form-label') }} {{ html()->date('date')->class('form-control')->placeholder('Select Date')->required() }} {{ html()->div('Please select date')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
@push('js') @endpush