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

{{ __('Add additional security to your account using two factor authentication.') }}

@if (!$enabled)
@else @if (!$confirmed)

{{ __('You have enabled two-factor authentication, but it has not been confirmed yet.') }}

@else

{{ __('Two-factor authentication is enabled and confirmed.') }}

@endif
@if ($showingQrCode)

{{ __('Scan this QR code with your authenticator application:') }}

{!! auth()->user()->twoFactorQrCodeSvg() !!}
@endif @if ($showingConfirmationForm || !$confirmed)

{{ __('Enter the code from your authenticator app to confirm setup:') }}

@if ($errorMessage)

{{ $errorMessage }}

@endif @if ($verificationSuccess)

{{ __('Two-factor authentication has been confirmed and enabled!') }}

@endif
@endif @if ($showingRecoveryCodes)

{{ __('Store these recovery codes in a secure password manager. They can be used to recover access to your account if your two-factor authentication device is lost') }}

@foreach (json_decode(decrypt(auth()->user()->two_factor_recovery_codes), true) as $code)
{{ $code }}
@endforeach
@else
@endif
@endif