@extends('layouts.app') @section('title', $app_setting['name'] . ' | Profile') @section('content')
{{-- top --}}

Profile

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') }}

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

{{ __('Contact Info') }}

{{ __('Email') }} :

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

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

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

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

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

{{-- bottom --}}
@endsection