{{ $personal_information_array['candidate_first_name'] ?? '' }}
{{ $personal_information_array['candidate_last_name'] ?? '' }}
{{ $personal_information_array['candidate_other_names'] ?? '' }}
{{ $personal_information_array['candidate_profession'] ?? '' }}
@php
$gender = isset($personal_information_array['candidate_gender'])
? $personal_information_array['candidate_gender']
: null;
@endphp
Phone : {{ $personal_information_array['candidate_phone'] ?? '' }}
| Email: {{ $personal_information_array['candidate_email'] ?? '' }}
| Gender :
@if (isset($gender))
@if ($gender == 1)
Male
@elseif ($gender == 2)
Female
@else
@endif
@endif
@php
$personal_information_country = isset($personal_information_array['candidate_country'])
? $personal_information_array['candidate_country']
: null;
@endphp
Website :
{{ $personal_information_array['candidate_website_link_one'] ?? '' }} | Website 2:
{{ $personal_information_array['candidate_website_link_two'] ?? '' }} |
Address : {{ $personal_information_array['candidate_address'] ?? '' }}
, {{ $personal_information_array['candidate_city'] ?? '' }},
@if (isset($personal_information_country))
@if ($personal_information_country == 1)
Uganda
@elseif($personal_information_country == 2)
Kenya
@elseif($personal_information_country == 3)
Tanzania
@endif
@endif