@extends('mentor.layouts.master') @section('title', 'Mentee Profile') @section('content')
@include('layouts.partials.messages')

{{ __("Mentee Profile") }}

profile-image

Contact Information

Full name:

{{ $user->getFullname() }}

Email address:

{{ $user->email }}

Phone number:

{{ $user->phone ?? "-"}}

Gender:

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

Date of Birth:

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