@php($form = $form1) @include('admin.components.admin-form-wrapper')
{{-- 2FA Management Panel --}} @php($tfa_user = auth()->user())
Two-Factor Authentication
@if($tfa_user->is_tfa_enabled && $tfa_user->two_factor_confirmed_at) Enabled @else Disabled @endif

Add an extra layer of security. When enabled, you will be asked for a verification code each time you log in.

@if($tfa_user->is_tfa_enabled && $tfa_user->two_factor_confirmed_at)

Method: {{ $tfa_user->two_factor_method === 1 ? 'SMS' : 'Authenticator App (TOTP)' }}

@else @endif
@php($form = $form2) @include('admin.components.admin-form-wrapper')
@push('modals') {{-- ===== 2FA Setup Modal ===== --}} {{-- ===== Disable 2FA Modal ===== --}} @endpush @push('page_script') @endpush