@extends('layouts.app') @section('title') User Profile @endsection @section('content')

User Profile

Profile Image {{-- Profile Image --}}
First Name:

{{ $user->name ?? 'N/A' }}

Last Name:

{{ $user->profile->last_name ?? 'N/A' }}

Email:

{{ $user->email }}

Phone:

{{ $user->profile->phone ?? 'N/A' }}

Address:

{{ $user->profile->address ?? 'N/A' }}

City:

{{ $user->profile->city ?? 'N/A' }}

State:

{{ $user->profile->state ?? 'N/A' }}

Country:

{{ $user->profile->country ?? 'N/A' }}

Zip Code:

{{ $user->profile->zip_code ?? 'N/A' }}

@if (Auth::user()->role !== 'admin') Edit Profile Back to Dashboard @else Back to Dashboard Back to Manage User @endif
@section('rightads')

Right Ads

Left Ad @endsection @section('leftads')

Left Ads

Left Ad @endsection @endsection