@if($confirmed)

You have enabled two factor authentication.

When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone's Google Authenticator application.

@if($showRecoveryCodes)

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
@endif
Regenerate Codes Disable 2FA
@else @if(!$enabled)

Two factor authentication disabled.

When you enabled 2FA, you will be prompted for a secure code during authentication. This code can be retrieved from your phone's Google Authenticator application.

Enable
@else

Finish enabling two factor authentication.

Enable two-factor authentication to receive a secure token from your phone's Google Authenticator during login.

To enable two-factor authentication, scan the QR code or enter the setup key using your phone's authenticator app and provide the OTP code.

{{ __('Setup Key') }}: {{ $secret }}

@error('auth_code')

{{ $message }}

@enderror
Cancel Confirm
@endif @endif