@include('layouts.talentHeader')
Edit Candidate
@csrf
Name
Email
Phone Number
Position 1
Select Position
@php($position1 = $candidates->job_requisition_id) @foreach($jobs as $job)
id)?'selected':''}}>{{$job->job_title}}
@endforeach
Position 2
@php($position2 = $candidates->second_job_requisition_id)
Select Position
@foreach($jobs as $job)
id)?'selected':''}}>{{$job->job_title}}
@endforeach
Skills
@if($candidates->skills) @php($skills = explode(',', $candidates->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
Highest Qualification
@if($candidates['qualification']) @foreach($qualification as $education)
id == @$candidates['experience']->id ?'selected':'')}}>{{$education->qualification}}
@endforeach @else @foreach($qualification as $education)
{{$education->qualification}}
@endforeach @endif
Professional Certifications
@if($candidates->certifications) @php($certifications = explode(',', $candidates->certifications)) @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 = $candidates['experience']?$candidates['experience']->id:null) @foreach($jobexperiences as $experience)
id == $experienceId)?'selected':''}}>{{$experience->experience}}
@endforeach
LinkedIn Profile
Willing to relocate
relocate == 1)?'checked':''}}> Yes
relocate == 0 && $candidates->relocate != null)?'checked':''}}> No
Willing to travel for work
to_travel == 1)?'checked':''}}> Yes
to_travel == 0 && $candidates->to_travel != null)?'checked':''}}> No
Have You Ever worked for an MNC
working_mnc== 1 )?'checked':''}}> Yes
working_mnc == 0 && $candidates->working_mnc != null)?'checked':''}}> No
Your Age Range
Select Age Group
@for($i=20; $i <= 45; $i++)
age_group == $i." years")?'selected':''}}>{{$i}} years
@endfor
Expected Salary
Select a currency
@php($currencyId = $candidates['currency']?$candidates['currency']->id:null) @foreach($currency as $currencies)
id == $currencyId ?'selected':'')}}>{{$currencies->currency}}
@endforeach
Availability
Select availability
availability == "Immediately" ?'selected':'')}}>Immediately
availability == "<2 months from offer" ?'selected':'')}}> < 2 months from offer
availability == ">2 months from offer" ?'selected':'')}}> >2 months from offer
availability == "Can talk" ?'selected':'')}}>Can talk
Industry
Select Industry
@foreach($jobindustries as $jobindustry) @if($candidates['industry'])
id == @$candidates['industry']->id ?'selected':'')}}>{{$jobindustry->industry}}
@else
{{$jobindustry->industry}}
@endif @endforeach
Country of Origin
Select Country
@foreach($countries as $country)
id == @$candidates['origin_country']->id ?'selected':'')}}>{{$country->name}}
@endforeach
Country of Residence
Select Country
@foreach($countries as $country)
id == @$candidates['country']->id ?'selected':'')}}>{{$country->name}}
@endforeach
State
Select State
@if($candidates['country']) @php($country_id = $candidates['country']->id) @php($state = \App\Country::find($country_id)->states) @foreach($state as $sta)
id == @$candidates['state']->id)?'selected':''}}>{{$sta->name}}
@endforeach @endif
City
Select City
@if($candidates['state']) @php($currentStateId = $candidates['state']->id) @php($city = \App\State::find($currentStateId)->cities) @foreach($city as $cit)
id == @$candidates['city']->id)?'selected':''}}>{{$cit->name}}
@endforeach @endif
Resume
*
View Resume
Reports
@if($candidates->reports != null)
View Reports
@endif
Salary Details
@if($candidates->salary_details != null)
View Salary Details
@endif
Referral Check
@if($candidates->referral_check != null)
View Referral Check
@endif
Others
@if($candidates->others != null)
View Others
@endif
Update
Cancel
@include('layouts.footer')