{{ html()->label('For Department')->class('form-label') }} {{ html()->select('department_id', $departmentLists)->class('form-select select2')->placeholder('Department')->required() }} {{ html()->div('Please select department')->class('invalid-feedback') }}
{{ html()->label('For Designation')->class('form-label') }} {{ html()->select('designation_id', $designationLists)->class('form-select select2')->placeholder('Designation')->required() }} {{ html()->div('Please select designation')->class('invalid-feedback') }}
{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }} {{ html()->div('Please fill title')->class('invalid-feedback') }}
{{ html()->label('Vacancy Number')->class('form-label') }} {{ html()->number('vacancy_no')->class('form-control')->placeholder('Job Vacancy Number')->required() }} {{ html()->div('Please add vacancy number')->class('invalid-feedback') }}
{{ html()->label('Post Date')->class('form-label') }}
{{ html()->text('post_date')->class('form-control flatpickr-date')->placeholder('Job Post Date') }}
{{ html()->div('Please add post date')->class('invalid-feedback') }}
{{ html()->label('Expiry Date')->class('form-label') }}
{{ html()->text('expiry_date')->class('form-control flatpickr-date')->placeholder('Expiry Date') }}
{{ html()->div('Please add expiry date')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control ckeditor-classic')->attributes(['rows' => 3]) }}
@push('js') @endpush