@if (session()->has('alert')) @slot('type', session('alert')['type']) @slot('msg', session('alert')['msg']) @endif

{{__('Enable Authenticator 2FA')}}

{{__('Scan the following QR code using the Google Authenticator app')}}

{!! $qrCodeImage !!}
@csrf
@if ($errors->has('2fa_code'))
{{ $errors->first('2fa_code') }}
@endif

{{__('Recovery Codes')}}

{{__('You can use Recovery Codes if you accidentally delete the Google Authenticator app or lose your phone. Use these codes when logging in instead of the app')}}

@foreach($recoveryCodes as $code)
{{ $code }}
Click to copy
@endforeach