@php if (Auth::user()->dashboard_style == "light") { $bgmenu="blue"; $bg="light"; $text = "dark"; } else { $bgmenu="dark"; $bg="dark"; $text = "light"; } @endphp @extends('layouts.app') @section('content') @include('user.topmenu') @include('user.sidebar')

{{ __('Security/Account Deletion') }}

@if(Session::has('message'))
{{Session::get('message')}}
@endif @if(count($errors) > 0)
@endif {{--
@if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') @endif
--}}
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
@livewire('profile.two-factor-authentication-form')
@endif
@livewire('profile.logout-other-browser-sessions-form')
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
@livewire('profile.delete-user-form')
@endif
@endsection