@extends('layouts.master', ['title' => 'My Profile']) @section('contents')

Profile Details

User Image
{{ auth()->user()->first_name }} {{ auth()->user()->last_name }}

{{ auth()->user()->email }}

Account Information

Logged In As

{{ get_role_name(auth()->user()->role_id) }}

Contact No

{{ auth()->user()->phone }}

Gender

{{ auth()->user()->gender }}

DOB

{{ date('jS F, Y', strtotime(auth()->user()->dob)) }}

@endsection