@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Profile')) @section('header-title')

{{ __('Profile') }}

@endsection @section('content')
profile
@csrf @method('PUT')

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

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

{{ __('Email') }}

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

{{ __('Phone Number') }}

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

{{ __('Gender') }}

{{ auth()->user()->gender ?? 'N/A' }}

{{ __('Date of Birth') }}

{{ \Carbon\Carbon::parse(auth()->user()->birthday)->format('d M, Y') }}

{{ __('About Me') }}

edit

{{ auth()->user()->about ?? __('No information available right now') }}.

{{ __('Contact Info') }}

edit
{{ __('Email') }}:

{{ auth()->user()->email ?? 'N/A' }}

{{ __('Phone Number') }}:

{{ auth()->user()->phone ?? 'N/A' }}

{{ __('Whatsapp Number') }}:

{{ auth()->user()->whatsapp ?? 'N/A' }}

@endsection