{{ __('Settings') }}

@csrf
{{ __('Security Management') }}
@if(Auth::user()->two_factor_confirmed_at || session('two_factor_confirmed'))
@csrf @method('DELETE')
{{ __('Two Factor Authentication') }}

{{ __('Authenticating With Two Factor Authentication') }}

@elseif(Auth::user()->two_factor_secret)
@csrf
@php echo Auth::user()->twoFactorQrCodeSvg() @endphp
@php session(['two_factor_confirmed' => true]) @endphp @else
@csrf
{{ __('Two Factor Authentication') }}

{{ __('Authenticating With Two Factor Authentication') }}

@endif
{{ __("Ensure your account is using a long, random password to stay secure.") }}
@csrf @method('put')
{{ __('Profile Information') }}
@csrf @method('patch')
{{ __("Update your account's profile information and email address") }}
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())

{{ __('Your email address is unverified.') }}

@if (session('status') === 'verification-link-sent')

{{ __('A new verification link has been sent to your email address.') }}

@endif
@endif