@include('partials._mobile_header', [
'title' => 'Two-Factor Authentication',
'showBackButton' => true,
'backUrl' => route('profile'),
'showNotifications' => true,
'showDarkMode' => true,
'financeUser' => Auth::user()
])
Two-Factor Authentication
Add an extra layer of security to your account
Email-Based Two-Factor Authentication
Add an extra layer of security to your account
@if(auth()->user()->two_factor_enabled)
Enabled
@else
Disabled
@endif
Current Status
When enabled, a 6-digit verification code will be sent to your email address {{ auth()->user()->email }} each time you log in to your account.
How Two-Factor Authentication Works
- When you log in with your password, a 6-digit code will be sent to your email
- You must enter this code to complete your login
- This adds an extra layer of security to your account
- The code expires after 10 minutes for security
-
Use a strong, unique password
-
Enable two-factor authentication
-
Keep your email secure
-
Log out when using shared devices
-
Regularly check your account activity
@endsection