@if (Laravel\Fortify\Features::canUpdateProfileInformation())
@livewire('profile.update-profile-form')
@endif
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
@livewire('profile.update-password-form')
@endif
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
@livewire('profile.two-factor-authentication-form')
@endif
{{-- OAuth Management --}}
@livewire('profile.manage-oauth-connections')
@if (config('session.driver') === 'database')
@livewire('profile.logout-other-browser-sessions-form')
@endif
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
@livewire('profile.delete-user-form')
@endif