@extends('layouts.app')
@section('content')
👤 Profile Settings
{{-- Update Profile Information --}}
@livewire('profile.update-profile-information-form')
{{-- Update Password --}}
@livewire('profile.update-password-form')
{{-- Two Factor Authentication --}}
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::twoFactorAuthentication()))
@livewire('profile.two-factor-authentication-form')
@endif
{{-- Logout from Other Browsers --}}
@livewire('profile.logout-other-browser-sessions-form')
{{-- Delete Account --}}
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
@livewire('profile.delete-user-form')
@endif
@endsection