@csrf @method('patch')
Work Experience
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($workExp) @foreach ($workExp as $i=>$item)
Name of the Organisation & Address
@if($errors->has('organisation_names'.$i))
{{ str_replace("organisation_names.$i","organisation name",$errors->first('organisation_names.${i}')) }}
@endif
Position
@if($errors->has('positions'.$i))
{{ str_replace("positions${i}","positions",$errors->first('positions${i}')) }}
@endif
Job Profile
@if($errors->has('job_profiles'.$i))
{{ str_replace("job_profiles".$i,"Contact Number",$errors->first('job_profiles'.$i)) }}
@endif
Working From
@if($errors->has('working_froms.${i}'))
{{ str_replace("working_froms.${i}","working from",$errors->first('working_froms.${i}')) }}
@endif
Working Upto
@if($errors->has('working_upto.${i}'))
{{ str_replace("working_upto.${i}","working upto",$errors->first('working_upto.${i}')) }}
@endif
Mode of Sallary
-- select an option --
@foreach ($sallary_modes as $sallary)
mode_of_sallary == $sallary->id) selected @endif> {{ $sallary->mode }}
@endforeach
@if($errors->has('country'))
{{ str_replace("country","Country",$errors->first('country')) }}
@endif
Address
{{ $item->address ?? '' }}
@if($errors->has('addresses'))
{{ str_replace("contact_number","Contact Number",$errors->first('address')) }}
@endif
Country
-- select an option --
@foreach( $country as $value)
country_id == $value->id ) selected @endif>{{ $value->name }}
@endforeach
@if($errors->has('country'))
{{ str_replace("country","Country",$errors->first('country')) }}
@endif
State
{{ $item->state->name }}
@if($errors->has('state'))
{{ str_replace("state","State",$errors->first('state')) }}
@endif
City/Town
{{ $item->city->name }}
@if($errors->has('city'))
{{ str_replace("city","City",$errors->first('city')) }}
@endif
Postal/zipcode
@if($errors->has('zipcode'))
{{ str_replace("zipcode","Zip Code",$errors->first('zipcodes')) }}
@endif
@endforeach @endif
+ Add Work Experience
{{-- @if(count($workExp)>0) @if($workExp && $workExp[0]->is_submit != 1)
Verify pre-filled data carefully before submitting it for assessment.
Final Submit ?
@endif @endif --}}
@push('cs') @endpush