Preview - application ID {{ $application->tracking_number }}
Applicant's photo
logo
{{ $application->tracking_number }}
Programme Applied for: {{ $application->programme->name }}
Preferred Venue of study: {{$application->campus->name }}
  1. Personal Data
    Surname {{ $applicant->surname }}
    Forenames {{ $applicant->forenames }}
    Date of birth {{ $applicant->dob }}
    Gender {{ $applicant->gender }}
    Contact address {{ "$applicant->postal_code, $applicant->postal_address" }}
    Town {{ $applicant->town }}
    Country {{ $applicant->country }}
    Telephone {{ $applicant->phone }}
    Mobile {{ $applicant->other_phones }}
    E- mail {{ $applicant->email }}
    Nationality/Citizenship {{ $applicant->nationality }}
  2. Education / Academic Qualifications
    @forelse ($applicant->education as $edu) @empty @endforelse
    SCHOOL / INSTITUTION DEGREE OR OTHER QUALIFICATIONS OBTAINED YEAR FIELD OF STUDY
    FROM TO
    {{ $edu->institution }} {{ $edu->programme }} {{ $edu->starting }} {{ $edu->ending }} {{ $edu->field_of_study }}
    No education background added
  3. Work Experience
    @php $current = $applicant->employments->where('current',true)->first() @endphp Current Occupation
    @if ($current)
    Job title {{ $current->position }}
    Name of Organization/Company/Government Ministry {{ $current->employer }}
    Organization postal address {{ "$current->postal_code, $current->postal_address" }}
    Organization telephone no {{ $current->phone }}
    Email {{ $current->email }}
    Summary of responsibilities: {{ $current->responsibilities }}
    @endif
  4. Previous Work Experience @forelse ($applicant->employments->where('current',false) as $edu) @empty @endforelse
    JOB TITLE NAME OF EMPLOYER PERIOD
    FROM TO
    {{ $edu->position }} {{ $edu->employer }} {{ $edu->from }} {{ $edu->to }}
    No job background added
{{-- @include('applications.confirm') --}}