@extends('frontend.layout.app') @section('main_content')

Profile of "{{ $candidate_single->name }}"

@include('company.sidebar')

Basic Profile

@if($candidate_single->designation!=null) @endif @if($candidate_single->phone!=null) @endif @if($candidate_single->country!=null) @endif @if($candidate_single->address!=null) @endif @if($candidate_single->state!=null) @endif @if($candidate_single->city!=null) @endif @if($candidate_single->zip_code!=null) @endif @if($candidate_single->gender!=null) @endif @if($candidate_single->marital_status!=null) @endif @if($candidate_single->date_of_birth!=null) @endif @if($candidate_single->website!=null) @endif @if($candidate_single->biography!=null) @endif
Photo: @if($candidate_single->photo=='') @else @endif
Name: {{ $candidate_single->name }}
Profession: {{ $candidate_single->designation }}
Email: {{ $candidate_single->email }}
Phone: {{ $candidate_single->phone }}
Country: {{ $candidate_single->country }}
Address: {{ $candidate_single->address }}
State: {{ $candidate_single->state }}
City: {{ $candidate_single->city }}
Zip Code: {{ $candidate_single->zip_code }}
Gender: {{ $candidate_single->gender }}
Marital Status: {{ $candidate_single->marital_status }}
Date of Birth: {{ $candidate_single->date_of_birth }}
Website: {{ $candidate_single->website }}
Biography: {!! $candidate_single->biography !!}
@if($candidate_educations->count())

Education

@foreach($candidate_educations as $item) @endforeach
SL Education Level Institute Degree Passing Year
{{ $loop->iteration }} {{ $item->level }} {{ $item->institute }} {{ $item->degree }} {{ $item->passing_year }}
@endif @if($candidate_skills->count())

Skills

@foreach($candidate_skills as $item) @endforeach
SL Skill Name
{{ $loop->iteration }} {{ $item->name }}
@endif @if($candidate_experiences->count())

Experience

@foreach($candidate_experiences as $item) @endforeach
SL Company Designation Start Date End Date
{{ $loop->iteration }} {{ $item->company }} {{ $item->designation }} {{ $item->start_date }} {{ $item->end_date }}
@endif @if($candidate_awards->count())

Awards

@foreach($candidate_awards as $item) @endforeach
SL Title Description Date
{{ $loop->iteration }} {{ $item->title }} {{ $item->description }} {{ $item->date }}
@endif @if($candidate_resumes->count())

Resume

@foreach($candidate_resumes as $item) @endforeach
SL Name File
{{ $loop->iteration }} {{ $item->name }} {{ $item->file }}
@endif
@endsection