{{ html()->label('Department')->class('form-label') }} {{ html()->select('department_id', [1 => 'Employee of the Month', 2 => 'Best Manger'])->class('form-select select2')->placeholder('Department')->required() }}
{{ html()->label('Name')->class('form-label') }} {{ html()->text('name')->class('form-control')->placeholder('Designation Name')->required() }} {{ html()->div('Please add designation')->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]) }}
{{ html()->button($editable ? 'Update' : 'Add Designation', 'submit')->class('btn btn-success') }}
@push('js') @endpush