mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<x-app-layout>
|
|
|
|
<livewire:frontend.header :country="\App\Models\Country::query()->where('code', 'de')->first()"/>
|
|
|
|
<div>
|
|
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
|
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
|
|
@livewire('profile.update-profile-information-form')
|
|
|
|
<x-jet-section-border />
|
|
@endif
|
|
|
|
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
|
|
<div class="mt-10 sm:mt-0">
|
|
@livewire('profile.update-password-form')
|
|
</div>
|
|
|
|
<x-jet-section-border />
|
|
@endif
|
|
|
|
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
|
|
<div class="mt-10 sm:mt-0">
|
|
@livewire('profile.two-factor-authentication-form')
|
|
</div>
|
|
|
|
<x-jet-section-border />
|
|
@endif
|
|
|
|
<div class="mt-10 sm:mt-0">
|
|
@livewire('profile.logout-other-browser-sessions-form')
|
|
</div>
|
|
|
|
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
|
|
<x-jet-section-border />
|
|
|
|
<div class="mt-10 sm:mt-0">
|
|
@livewire('profile.delete-user-form')
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<livewire:frontend.footer/>
|
|
</x-app-layout>
|