NICMAR Recruitment
Position: {{ $data['position'] ?? '' }}
``` ```
Name: {{ $data['name'] }}
Email: {{ $data['email'] }}
Mobile: {{ $data['mobile'] }}
@if(!empty($data['photo']))
@endif
Personal Information
```
Gender {{ $data['gender'] ?? '' }} DOB {{ $data['dob'] ?? '' }}
Applied Date {{ $data['applied_date'] ?? '' }}
```
@if(!empty($data['address']))
Address

{{ $data['address'] }}

@endif @if(!empty($data['education']) && is_array($data['education']))
Education
@foreach($data['education'] as $edu) @endforeach
Level Board / University Institute Specialization Marks CGPA Year
{{ $edu['level'] ?? '' }} {{ $edu['board'] ?? '' }} {{ $edu['institute'] ?? '' }} {{ $edu['specialization'] ?? '' }} {{ $edu['marks'] ?? '' }} {{ $edu['cgpa'] ?? '' }} {{ $edu['year'] ?? '' }}
@endif @if(!empty($data['experience']))
Work Experience
{{ $data['experience'] }}
@endif @if(!empty($data['publications']))
Publications
{{ $data['publications'] }}
@endif @if(!empty($data['skills']))
Skills
{{ $data['skills'] }}
@endif @if(!empty($data['reference1']) || !empty($data['reference2']) || !empty($data['reference3']))
References
```
Reference 1 Reference 2 Reference 3
{{ $data['reference1'] ?? '' }} {{ $data['reference2'] ?? '' }} {{ $data['reference3'] ?? '' }}
```
@endif