@include('layouts.talentHeader')
Submit Resume
@csrf
Name
*
:
@error('first_name')
{{ $message }}
@enderror
Email
*
:
@error('email')
{{ $message }}
@enderror
Phone
*
:
@error('phone')
{{ $message }}
@enderror
LinkedIn Profile:
Upload File
*
@error('attachment')
{{ $message }}
@enderror
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
Position
*
:
@if(old('position')) @php($pos = old('position')) @foreach($positions as $position) @if($pos == $position->position)
{{$position->position}}
@else
{{$position->position}}
@endif @endforeach @else @foreach($positions as $position)
{{$position->position}}
@endforeach @endif
@error('position')
{{ $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')?old('experience_id'):'') @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 Group
20-25 years
26-30 years
31-35 years
36-40 years
41-45 years
46-50 years
51-55 years
55+ years
Availability:
Select availability
Immediately
< 2 months from offer
>2 months from offer
Let's Discuss
Expected Salary:
Select a currency
@php($job_currencyId = old('salary')?old('salary'):'') @foreach($currency as $currencies)
id == $job_currencyId ?'selected':'')}}>{{$currencies->currency}}
@endforeach
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
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')