Add additional security to your account using 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(!empty(auth()->user()->two_factor_confirmed_at))
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(auth()->user()->getRecoveryCodes() as $code)
{{ $loop->iteration }}. {{ $code }}
@endforeach
@endif
@if(!empty(auth()->user()->two_factor_secret) && empty(auth()->user()->two_factor_confirmed_at))
To finish enabling two factor authentication, scan the following QR code using your phone's authenticator application or enter the setup key and provide the generated OTP code.
{!! auth()->user()->twoFactorQrCodeSvg() !!}
Or enter this secret key manually
Setup Key: {{ Crypt::decrypt(auth()->user()->two_factor_secret) }}
@endif