{{__('Two factor authentication')}}

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

{{__('Two factor authentication disabled')}}

{{__("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.")}}.

{{__('Two factor authentication enabled')}}

{{-- Show SVG QR Code, After Enabling 2FA --}}

{{ __('Two factor authentication is now enabled. Scan the following QR code using your phone\'s authenticator application.') }}

{{-- Show 2FA Recovery Codes --}}

{{ __('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.') }}

    @if(auth()->user()->two_factor_secret) @foreach (json_decode(decrypt(auth()->user()->two_factor_recovery_codes), true) as $code)
  • {{ $code }}
  • @endforeach @endif
{{-- Regenerate 2FA Recovery Codes --}}