My Profile
My Profile
View and update your personal and academic details!
{{ (Auth::user()->profile && isset(Auth::user()->profile['first_name']) ? Auth::user()->profile['first_name'] : '') .' '. (Auth::user()->profile && isset(Auth::user()->profile['last_name']) ? Auth::user()->profile['last_name'] : '') .' '. (Auth::user()->profile && isset(Auth::user()->profile['other_name']) ? Auth::user()->profile['other_name'] : '') }}
Account: Student
{{--
Student Info
--}}| Full Name: | {{ (Auth::user()->profile && isset(Auth::user()->profile['first_name']) ? Auth::user()->profile['first_name'] : '') .' '. (Auth::user()->profile && isset(Auth::user()->profile['last_name']) ? Auth::user()->profile['last_name'] : '') }} |
|---|---|
| Gender: | {{Auth::user()->profile->gender ?? null}} |
| Mobile: | {{Auth::user()->phone ?? "Not Provided"}} |
| E-mail: | {{Auth::user()->email ?? "Not Provided"}} |
| Date Created: | {{Auth::user()->created_at->toDayDateTimeString() ?? null}} |
{{--