Files
investbrain/resources/views/profile/show.blade.php
T

41 lines
1.3 KiB
PHP
Raw Normal View History

2024-08-01 13:53:10 -05:00
<x-app-layout>
<div>
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
@livewire('profile.update-profile-information-form')
2024-10-20 10:06:06 -05:00
<x-section-border hide-on-mobile />
2024-08-01 13:53:10 -05:00
@endif
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
<div class="mt-10 sm:mt-0">
@livewire('profile.update-password-form')
</div>
2024-10-20 10:06:06 -05:00
<x-section-border hide-on-mobile />
2024-08-01 13:53:10 -05:00
@endif
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
<div class="mt-10 sm:mt-0">
@livewire('profile.two-factor-authentication-form')
</div>
2024-10-20 10:06:06 -05:00
<x-section-border hide-on-mobile />
2024-08-01 13:53:10 -05:00
@endif
<div class="mt-10 sm:mt-0">
@livewire('profile.logout-other-browser-sessions-form')
</div>
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
2024-10-20 10:06:06 -05:00
<x-section-border hide-on-mobile />
2024-08-01 13:53:10 -05:00
<div class="mt-10 sm:mt-0">
@livewire('profile.delete-user-form')
</div>
@endif
</div>
</div>
</x-app-layout>