@extends('front.layout-ref') @section('content')

Profile
@php $user_profile_image = Auth()->user()->profile_image ?: NULL; $username = Auth::user()->name; @endphp Profile Image

@include('front.my-account.tabs')

Your details:

Name {{ Auth::user()->name }}
Surname {{ Auth::user()->surname }}
Your email {{ Auth::user()->email }}
Your phone @if(isset(Auth::user()->phone)) {{ Auth::user()->phone }} @else Not set @endif
Password ********** Change password
Registration {{ Auth::user()->created_at->format('d M, Y h:i a') }}
Edit Details
@endsection