@extends('layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if($user->user_image) @else @endif

{{ $user->name }}

{{ $user->phone }}

@if($user->phone_verified_at) Phone Verified @else Not Verified @endif

Member Since

{{ $user->created_at ? $user->created_at->format('d M Y') : '-' }}

My Profile

Manage your personal details, orders, password and account activity.

Full Name
{{ $user->name }}
Phone Number
{{ $user->phone }}
Email Address
{{ $user->email ?? 'Not Added' }}
Account Status
@if($user->phone_verified_at) Verified Account @else Pending Verification @endif
@endsection