@include('layouts.talentHeader')
Apply for the Job
@csrf
First Name
*
:
@error('first_name')
{{ $message }}
@enderror
Last Name:
Email
*
:
@error('email')
{{ $message }}
@enderror
Phone
*
:
@error('phone')
{{ $message }}
@enderror
LinkedIn Profile:
Upload File
*
@error('attachment')
{{ $message }}
@enderror
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
@error('app_skills')
{{ $message }}
@enderror
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 Range:
Select Age
@for($i=20; $i <= 45; $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
Let's Discuss
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
Are you a referral candidate
Yes
No, Just submit resume
Referred By:
I understand that the information provided by me would be potentially shared with clients ( hiring organisations) and I hereby give my irrevocable consent to do the same
Submit
@include('layouts.footer')