80 lines
3.0 KiB
PHP
80 lines
3.0 KiB
PHP
|
<div class="row gy-3">
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Job Post')->class('form-label') }}
|
||
|
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Apply For') }}
|
||
|
</div>
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Name')->class('form-label') }}
|
||
|
{{ html()->text('name')->class('form-control')->placeholder('Full Name')->required() }}
|
||
|
{{ html()->div('Please enter Name')->class('invalid-feedback') }}
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Email')->class('form-label') }}
|
||
|
{{ html()->text('email')->class('form-control')->placeholder('Email Address')->required() }}
|
||
|
{{ html()->div('Please enter email address')->class('invalid-feedback') }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Gender')->class('form-label') }}
|
||
|
{{ html()->select('gender', $genderLists)->class('form-control select2')->placeholder('Gender') }}
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Address')->class('form-label') }}
|
||
|
{{ html()->text('address')->class('form-control')->placeholder('Full Address')->required() }}
|
||
|
{{ html()->div('Please enter address')->class('invalid-feedback') }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Contact')->class('form-label') }}
|
||
|
{{ html()->text('phone')->class('form-control')->placeholder('Contact Number')->required() }}
|
||
|
{{ html()->div('Please enter contact number')->class('invalid-feedback') }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Working Experience')->class('form-label') }}
|
||
|
{{ html()->text('working_experience')->class('form-control')->placeholder('Working Experience') }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Previous Company Name (If any)')->class('form-label') }}
|
||
|
{{ html()->text('prev_company')->class('form-control')->placeholder('Previous Company Name') }}
|
||
|
{{ html()->div('Please enter email')->class('invalid-feedback') }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Apply Date')->class('form-label') }}
|
||
|
{{ html()->text('apply_date')->class('form-control flatpickr-date')->placeholder('Apply Date')->required() }}
|
||
|
{{ html()->div('Please enter apply date')->class('invalid-feedback') }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="col-lg-4 col-md-6">
|
||
|
{{ html()->label('Recommended By (If any)')->class('form-label') }}
|
||
|
{{ html()->text('recommended_by')->class('form-control')->placeholder('Recommended By') }}
|
||
|
</div>
|
||
|
|
||
|
<div class="col-lg-12 col-md-12">
|
||
|
{{ html()->label('Description')->class('form-label') }}
|
||
|
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
|
||
|
</div>
|
||
|
|
||
|
<x-form-buttons :editable="$editable" label="Add" href="{{route('jobApplication.index')}}" />
|
||
|
</div>
|
||
|
|
||
|
@push('js')
|
||
|
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
||
|
@endpush
|