@extends('frontend.layouts.main') @section('title') {{ __('Security') }} @endsection @section('content')
{{ __('Two-factor authentication') }}

{{ __('2-step verification provides stronger security for your account by requiring a second step of verification when you sign in.') }} {{ __('In addition to your password, you will also need a code generated by the Google Authenticator app on your phone.') }} {{ __('It is strongly recommended to enable two-factor authentication to protect your account.') }}

@if(auth()->user()->totp_secret) {{ __('Disable 2FA') }} @else {{ __('Enable 2FA') }} @endif
@endsection