@include('layouts.hhHeader')
My Candidates List
Add Candidates
@error('name')
{{ $message }}
@enderror @error('email')
{{ $message }}
@enderror @error('phone')
{{ $message }}
@enderror @error('skills')
{{ $message }}
@enderror @error('attachment')
{{ $message }}
@enderror
Name
Skills
Email
Phone
Action
@if($candidates) @foreach($candidates as $candidate)
{{$candidate->name}}
{{$candidate->skills}}
{{$candidate->email}}
{{$candidate->phone}}
Edit
View
@endforeach @endif
@csrf
×
Add New Candidate
Name
Email
Phone
Skills
@if(old('currentJob') && $cjob['job_skillsReqd']) @php($skills = explode(',', $cjob['job_skillsReqd'])) @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(old('currentJob') && $cjob['job_qualification']) @php($qualifications = explode(',', $cjob['job_qualification'])) @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('currentJob') && $cjob['job_certification']) @php($certifications = explode(',', $cjob['job_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('currentJob')?$cjob['job_experience']:'') @foreach($jobexperiences as $experience)
id == $experienceId)?'selected':''}}>{{$experience->experience}}
@endforeach
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('currentJob')?$cjob['job_currency_id']:'') @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
Resume
*
Reports
Salary Details
Referral Check
Others
Delete Candidates
Are you sure want to delete?
Delete
Cancel
@include('layouts.footer')