@if (Laravel\Fortify\Features::canUpdateProfileInformation())
@livewire('profile.update-profile-information-form')
@endif
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()) && ! is_null($user->getAuthPassword()))
@livewire('profile.update-password-form')
@else
@livewire('profile.set-password-form')
@endif
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication() && ! is_null($user->getAuthPassword()))
@livewire('profile.two-factor-authentication-form')
@endif
@if (JoelButcher\Socialstream\Socialstream::show())
@livewire('profile.connected-accounts-form')
@endif
@if ( ! is_null($user->getAuthPassword()))
@livewire('profile.logout-other-browser-sessions-form')
@endif
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures() && ! is_null($user->getAuthPassword()))
@livewire('profile.delete-user-form')
@endif