@include('layouts.talentHeader')
Add Candidate
@csrf
Name
*
@error('name')
{{ $message }}
@enderror
Email
*
@error('email')
{{ $message }}
@enderror
Phone
*
@error('phone')
{{ $message }}
@enderror
Position 1
Select Position
@php($position1 = old('job_requisition_id')?old('job_requisition_id'):@$candidates->job_requisition_id) @foreach($jobs as $job)
id)?'selected':''}}>{{$job->job_title}}
@endforeach
Position 2
@php($position2 = old('job_requisition_id_2')?old('job_requisition_id_2'):@$candidates->second_job_requisition_id)
Select Position
@foreach($jobs as $job)
id)?'selected':''}}>{{$job->job_title}}
@endforeach
Skills
*
@if(old('skills')) @php($skills = explode(',', old('skills'))) @foreach($jobskills as $jobskill) @if(in_array($jobskill->skill, $skills))
{{$jobskill->skill}}
@else
{{$jobskill->skill}}
@endif @endforeach @else @foreach($jobskills as $jobskill)
{{$jobskill->skill}}
@endforeach @endif
@error('skills')
{{ $message }}
@enderror
Highest Qualification:
@if(old('qualification_id')) @php($qualifications = explode(',', old('qualification_id'))) @foreach($qualification as $education) @if(in_array($education->qualification, $qualifications))
{{$education->qualification}}
@else
{{$education->qualification}}
@endif @endforeach @else @foreach($qualification as $education)
{{$education->qualification}}
@endforeach @endif
Professional Certifications:
@if(old('certification') ) @php($certifications = explode(',', old('certification'))) @foreach($certification as $certificate) @if(in_array($certificate->certification, $certifications))
{{$certificate->certification}}
@else
{{$certificate->certification}}
@endif @endforeach @else @foreach($certification as $certificate)
{{$certificate->certification}}
@endforeach @endif
Total Experience
Select Experience
@php($experienceId = old('experience_id')) @foreach($jobexperiences as $experience)
id == $experienceId)?'selected':''}}>{{$experience->experience}}
@endforeach
LinkedIn Profile
Willing to relocate
Yes
No
Willing to travel for work
Yes
No
Have You Ever worked for an MNC
Yes
No
Your Age:
Select Age Group
@for($i=20; $i <= 55; $i++)
{{$i}} years
@endfor
Expected Salary:
Select a currency
@php($job_currencyId = old('currency')?old('currency'):3) @foreach($currency as $currencies)
id == $job_currencyId ?'selected':'')}}>{{$currencies->currency}}
@endforeach
Availability
Select availability
Immediately
< 2 months from offer
>2 months from offer
Can talk
Industry
Select Industry
@foreach($jobindustries as $jobindustry)
{{$jobindustry->industry}}
@endforeach
Country of Origin
Select Country
@foreach($countries as $country)
{{$country->name}}
@endforeach
Country of Residence
Select Country
@foreach($countries as $country)
{{$country->name}}
@endforeach
State
Select State
City
Select City
Remarks
{{old('remarks')?old('remarks'):@$candidates->remarks}}
Resume
*
Reports
Salary Details
Referral Check
Others
Submit
@include('layouts.footer')