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

@if (session('status'))
{{ session('status') }}
@endif

Two Factor Authentication Status

@if($is2faEnabled) Enabled @else Disabled @endif

@if($is2faEnabled) @endif
@if(!$is2faEnabled)

Scan this QR code with your Google Authenticator app:

{!! $qrCode !!}

Or manually enter this code in your app:

{{ $secret }}

@csrf
{{ __('Confirm & Enable 2FA') }}

Recovery Codes

Store these recovery codes in a secure place. They can be used to recover access to your account if you lose your 2FA device.

@foreach($recoveryCodes as $code)
{{ $code }}
@endforeach
@endif