@php $u = auth()->user(); $initials = strtoupper(mb_substr($u->name, 0, 2)); $twoFactorEnabled = $u->hasTwoFactorEnabled(); $tabs = [ ['key' => 'profile', 'label' => __('settings.tab_profile'), 'icon' => 'settings'], ['key' => 'security', 'label' => __('settings.tab_security'), 'icon' => 'shield'], ['key' => 'login-protection', 'label' => __('settings.tab_login_protection'), 'icon' => 'shield'], ['key' => 'users', 'label' => __('settings.tab_users'), 'icon' => 'user-plus'], ['key' => 'sessions', 'label' => __('settings.tab_sessions'), 'icon' => 'logout'], ['key' => 'email', 'label' => __('settings.tab_email'), 'icon' => 'mail'], ]; @endphp
{{ __('settings.account') }}
{{ $u->email }}