@section('title') {{ $user->role }} {{ $title }} @endsection
{{-- Back --}}
Contact Person Name {{ $user->name }}
Registered Email {{ $user->email }} @if($user->hasVerifiedEmail()) Verified @else Not Verified @endif
Registered Mobile ({{ $user->country_code }}) - {{ $user->mobile }}
{{-- -----------------------------------candidate profile --}} @if (isset($candidate->id))

About

@if (isset($candidate->image)) @endif {{ $candidate->description }}

Summary

{{ Auth::user()->name }}
{{ $candidate->father_name }}
{{ $candidate->aadhar }}
{{ $candidate->current_designation }}
{{ getIndustryByIndustryId($candidate->industry_id) }}
{{ $candidate->industry }}
{{ $candidate->expected_salary }}
{{ $candidate->job_experience }}
{{ getMaritalStatusById($candidate->marital_status_id) }}
{{ $candidate->phone }}
@isset($user->country_code) +({{ $user->country_code }}) @endisset {{ $user->mobile }}
{{ $candidate->email }}
{{ $candidate->address }}
{{ $candidate->city }}, {{ $candidate->state }}
{{--
{{ $candidate->city }}, {{ $candidate->state }}
--}}
{{ $candidate->date_of_birth }}
{{ $candidate->gender }}
@if ($candidate->is_immediate_available == 1) Yes @else No @endif
@endif {{-- -----------------------------------candidate profile end --}} {{-- -----------------------------------employer profile --}} @if (isset($employer->id))

About

{{ $employer->description }}
{{--
--}} {{-- -----------------------------profile --}} {{--
--}}

Summary

{{ $employer->organization_name }}
{{ $employer->industry }}
{{ $employer->office_phone }}
{{ $employer->extension }}
{{ $employer->address }} {{ $employer->city }}, {{ $employer->state }}

Contact Person

{{ $employer->contact_person_name }}
{{ $employer->contact_person_designation }}
{{ $employer->contact_person_email }}
@if(isset($user->country_code)) +({{ $user->country_code }}) @endif {{ $user->mobile }}
{{ $employer->contact_person_phone }} -
{{ $employer->contact_person_extension }}
@if ($user->role == "Institute")

Resume Uploaded

@endif @endif {{-- -----------------------------------employer profile end --}} {{-- -----------------------------------candidate cv --}} @if ($candidateResumes->isEmpty()) {{-- {!! alert('No resume uploaded.') !!} --}} @else

Resume

@foreach ($candidateResumes as $candidateResume) @endforeach
Title Type File Uploaded On
{{-- --}} {{ $candidateResume->title }} {{-- --}} {{ $candidateResume->type }} @if(Storage::disk('public')->exists($candidateResume->resume_file)) {{ substr($candidateResume->resume_file, strrpos($candidateResume->resume_file, '/') + 1) }} @else File not found!
{{ substr($candidateResume->resume_file, strrpos($candidateResume->resume_file, '/') + 1) }} @endif
{{ $candidateResume->created_at }}
@endif