@props([ 'subHeaderClass' => theme('header', 'subHeaderClass'), 'profileBgColor' => theme('header', 'profileBgColor'), ])

{{ __('Profile') }}

@if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') @if (!auth()->user()->isSocialite()) @endif @endif @if (!auth()->user()->isSocialite()) @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
@livewire('profile.update-password-form')
@endif @endif @if ((Laravel\Fortify\Features::canManageTwoFactorAuthentication() && !auth()->user()->isSocialite()))
@livewire('profile.two-factor-authentication-form')
@endif @if (!auth()->user()->isSocialite())
@livewire('profile.logout-other-browser-sessions-form')
@endif @if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
@livewire('profile.delete-user-form')
@endif