@extends('layouts.client_template') @section('content')

My Profile Details

Since {{date(Auth::user()->created_at)}}

{{Auth::user()->name}}


Name

{{ucfirst(Auth::user()->name)}}

Email

{{Auth::user()->email}}

Gender

{{ucfirst(Auth::user()->gender)}}

Mobile

{{Auth::user()->phone}}

Date of birth

{{Auth::user()->bdate}}

City

{{ Auth::user()->city }}

Registration Date

{{date('Y-m-d',strtotime(Auth::user()->created_at))}}

Address

{{ Auth::user()->address }}


@endsection