{{ __('Profile Information') }}

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

Full Name

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

Email

Personal Information
Name :
{{auth()->user()->name}}
Email :
{{auth()->user()->email}}
Username:
{{auth()->user()->username}}
Account :
{{auth()->user()->account}}
Address :
{{auth()->user()->address}}
Mobile :
{{auth()->user()->mobile}}
{{ __('Profile Information') }}

{{ __('Update your account\'s profile information and email address.') }}

@if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') @endif
{{ __('Update Password') }}

{{ __('Ensure your account is using a long, random password to stay secure.') }}

@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords())) @livewire('profile.update-password-form') @endif
{{ __('Two Factor Authentication') }}

{{ __('Add additional security to your account using two factor authentication.') }}

@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
@livewire('profile.two-factor-authentication-form')
@endif
@livewire('profile.logout-other-browser-sessions-form')
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
@livewire('profile.delete-user-form')
@endif