@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title','Candidate Profile') @section('css') @endsection @section('content')
avatar

{{ $candidate->user?->name }}

{{ $candidate->job_title ?? 'Not specified' }}

← Back
Email: {{ $candidate->email ?? '-' }}
Phone: {{ $candidate->phone ?? '-' }}
Gender: {{ ucfirst($candidate->gender ?? '-') }}
Date of Birth: {{ $candidate->dob ? $candidate->dob->format('d M Y') : '-' }}
Nationality: {{ $candidate->country ?? '-' }}
Location: {{ $candidate->address ?? '-' }}
Agent: {{ $candidate->agent->name ?? '-' }}
Partner: {{ $candidate->partner->name ?? '-' }}
@if(!empty($candidate->summary))
Summary

{{ $candidate->summary }}

@endif
@if($candidate->applications->count())
    @foreach($candidate->applications as $app)
  • {{ $app->job_title }} — {{ $app->company_name }}
    Status: {{ ucfirst($app->status) }}
  • @endforeach
@else

No applications found.

@endif
@if($candidate->documents->count())
    @foreach($candidate->documents as $doc)
  • {{ $doc->name }} View
  • @endforeach
@else

No documents uploaded.

@endif
@if($candidate->certifications->count())
    @foreach($candidate->certifications as $edu)
  • {{ $edu->degree }} — {{ $edu->institution }}
    {{ $edu->year_start }} - {{ $edu->year_end }}
  • @endforeach
@else

No education records found.

@endif
@if($candidate->skills)
@foreach(explode(',', $candidate->skills) as $skill) {{ trim($skill) }} @endforeach
@else

No skills added.

@endif
@if($candidate->languages)
@foreach(explode(',', $candidate->languages) as $lang) {{ trim($lang) }} @endforeach
@else

No languages specified.

@endif
@csrf
@endsection @section('script') @endsection