@extends('admin.layouts.app_admin') @section('content')

Profile

Profile

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

{{ auth()->user()->title ?? '' }}

@if (auth()->user()->about)
About

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

@endif
Profile Details
Name
{{ auth()->user()->name }}
Title
{{ auth()->user()->title }}
Email
{{ auth()->user()->email }}
Country
{{ auth()->user()->country ?? 'N/A' }}
Address
{{ auth()->user()->address ?? 'N/A' }}
Phone
{{ auth()->user()->phone ?? 'N/A' }}
@endsection