@extends('layouts.content') @section('body_content')
List Candidate Employee
@include('partials.alert')
Profile Candidate Employee
{{-- end image --}}
Personal Candidate Employee
@if ($candidateEmployee['status'] === 'Potensial')

{{ $candidateEmployee['status'] }}

@elseif($candidateEmployee['status'] === 'Candidate')

{{ $candidateEmployee['status'] }}

@endif
Position Request : {{ $candidateEmployee['role']['name'] }}
Personal Identification Number : {{ $candidateEmployee['pid'] }}
Family Card Number : {{ $candidateEmployee['family_card_no'] }}
Name : {{ $candidateEmployee['name'] }}
Gender : {{ $candidateEmployee['gender'] }}
Place Of Birthday : {{ $candidateEmployee['pob'] }}
birthday : {{ $candidateEmployee['birthday'] }}
Age : {{ $candidateEmployee['age'] }}
Religion : {{ $candidateEmployee['religion'] }}
NPWP : {{ $candidateEmployee['npwp'] }}
address : {{ $candidateEmployee['address'] }}
address current : {{ $candidateEmployee['address_current'] }}
Phone Number : {{ $candidateEmployee['phone_number'] }}
Email : {{ $candidateEmployee['email'] }}
Status :
Education
@foreach ($candidateEducation as $pendidikan) @endforeach
Level of Education School/University Major Education Year
{{ $pendidikan['education'] }} {{ $pendidikan['school'] }} {{ $pendidikan['major'] }} {{ $pendidikan['date_start'] . ' / ' . $pendidikan['date_end'] }}
Certificate
@foreach ($candidateDocument as $certificate) @endforeach
Type Certificate File
{{ $certificate['typeCertificate']['type'] }} Certificate
@include('candidate_data.showModal.candidate_modal') @include('candidate_data.showModal.potential_modal') @include('candidate_data.showModal.no_candidate_modal') @endsection