2025-09-26 17:41:28 -05:00
|
|
|
<x-layouts.app>
|
2024-08-01 13:53:10 -05:00
|
|
|
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
|
|
|
|
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
|
|
|
|
|
@livewire('update-profile-information-form')
|
2024-08-01 13:53:10 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.section-border hide-on-mobile />
|
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
<div class="mt-10 sm:mt-0">
|
|
|
|
|
@livewire('localization-form')
|
|
|
|
|
</div>
|
2024-08-01 13:53:10 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.section-border hide-on-mobile />
|
|
|
|
|
|
|
|
|
|
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
|
|
|
|
|
<div class="mt-10 sm:mt-0">
|
|
|
|
|
@livewire('update-password-form')
|
|
|
|
|
</div>
|
2024-08-01 13:53:10 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.section-border hide-on-mobile />
|
|
|
|
|
@endif
|
2024-08-01 13:53:10 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
|
2024-08-01 13:53:10 -05:00
|
|
|
<div class="mt-10 sm:mt-0">
|
2025-09-26 17:41:28 -05:00
|
|
|
@livewire('two-factor-authentication-form')
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.section-border hide-on-mobile />
|
|
|
|
|
@endif
|
2024-08-01 13:53:10 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<div class="mt-10 sm:mt-0">
|
|
|
|
|
@livewire('delete-user-form')
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
2025-09-26 17:41:28 -05:00
|
|
|
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
2025-09-26 17:41:28 -05:00
|
|
|
|
|
|
|
|
</x-layouts.app>
|