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

@if (auth()->user()->two_fa_active == 'No')

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

{{ __('Why do I need this?') }}

{{ __('Passwords can get stolen – especially if you use the same password for multiple sites.') }} {{ __('Adding Two-Step Verification means that even if your password gets stolen, your account will remain secure.') }}

{{ __('How does it work?') }}

{{ __("After you turn on Two-Step Verification for your account, signing in will be a little different: You will enter your password, as usual.") }}

{{ __('Next open your Authenticator app and copy the code number into the form and submit.') }}

@endif
@if (auth()->user()->two_fa_active == 'Yes' && auth()->user()->two_fa_secret_key !='')

{{ __('Your 2-Factor Authentication is in place, to remove this click the button below.') }}

{{ __('Turn off 2FA') }} @else

{{ __('Authenticator apps generate random codes that you can use to sign in. They do not have access to your password or account information.') }}

{{ __('1Password is a good authenticator app as is Authy.') }}

code

{{ __('Scan bar code in your authenticator app or manually enter this key') }} {{ $secretKey }}

{{ __('Turn on 2FA') }} @endif @include('errors.messages')