Edit Profile
Update your account settings and preferences
@if(session('success'))
{{ session('success') }}
@endif
@if($success_2fa)
{{ $success_2fa }}
@endif
@if($error || $error_2fa)
{{ $error ?: $error_2fa }}
@endif
Two-Factor Authentication (2FA)
@if($user->passwordSecurity()->exists() && $user->passwordSecurity->google2fa_enable)
Two-Factor Authentication is Active
Your account is protected with an additional layer of security. You'll need your authenticator app to log in.
Warning: Disabling 2FA will make your account less secure. Please enter your password to confirm.
@elseif($user->passwordSecurity()->exists() && !$user->passwordSecurity->google2fa_enable)
Complete Your 2FA Setup
Follow these steps to enable two-factor authentication:
- Install an authenticator app (Google Authenticator, Authy, or similar)
- Scan the QR code below with your authenticator app
- Enter the 6-digit code from your app to verify
{!! $google2fa_url !!}
Secret Key (manual entry):
{{ $user->passwordSecurity->google2fa_secret }}
@else
Two-Factor Authentication is Disabled
Add an extra layer of security to your account by enabling two-factor authentication.
@endif
What is 2FA? Two-Factor Authentication adds an extra layer of security by requiring both your password and a code from your phone to log in.