@extends('mentor.layouts.master') @section('title', 'Profile - Mentor') @section('pagetitle', 'Profile - Mentor') @section('content') @include('layouts.partials.breadcrumbs', ['breadcrumbs' => [ ['url' => route('mentor.dashboard'), 'title' => __('Home')], ['url' => route('mentor.profile'), 'title' => __('Profile')]] ])
@include('layouts.partials.messages')

{{ __("Mentor Profile") }}

profile-image

Contact Information

Full name:

{{$user->getFullName()}}

Email address:

{{$user->email}}

Phone number:

{{$user->phone}}

Gender:

{{$user->gender['name'] ? : '-'}}

Date of Birth:

{{$user->birthday ? $user->present()->birthday : '-'}}

Education information

Department:

{{$user->data['department'] ?? '-'}}

Degree:

{{$user->data['degree'] ?? '-'}}

School year:

{{$user->data['academic_year']['from'] ?? '-'}} - {{$user->data['academic_year']['to'] ?? '-'}}

Mentor:

Yes

Work Information

Current employer:

{{$user->data['employment_info']['current_employer'] ?? '-'}}

Work experience:

{{$user->data['employment_info']['work_experience'] ?? 0}} years
{{-- --}}
@endsection