@props(['candidate'])

General Info

Full Name {{$candidate->user->first_name}} {{$candidate->user->last_name}} @if($candidate->changes_request && ($candidate->changes_request_arg('first_name') || $candidate->changes_request_arg('last_name'))) @if ($candidate->changes_request_arg('first_name'))

Change
@else
Change
@endif @endif

@if($candidate->user->birthday)

Date of Birth {{\Carbon\Carbon::parse($candidate->user->birthday)->format('d/m/Y')}} @if($candidate->changes_request && $candidate->changes_request_arg('birthday'))

Change
@endif

@endif @if($candidate->user->email)

Email {{$candidate->user->email}} @if($candidate->changes_request && $candidate->changes_request_arg('email'))

Change
@endif

@endif @if($candidate->user->phone)

Phone Number{{$candidate->user->phone}}

@endif

Address

{{-- --}}
@if($candidate->address)

Address @if($candidate->address) {{$candidate->address->address_1}} @if($candidate->address->city) ,{{$candidate->address->city->title}} @endif @if($candidate->address->post_code) ,{{$candidate->address->post_code}} @endif @if($candidate->address->region) ,{{$candidate->address->region->title}} @endif @if($candidate->address->region) ,{{$candidate->address->country->title}} @endif @endif

@endif @if($candidate->address && $candidate->address->address_2)

Address 2 {{$candidate->address->address_2}}

@endif