Profile | Coolify

Profile

Your user profile settings.

General

Save
@if (!$show_email_change && !$show_verification) Change Email @else Change Email @endif
@if ($show_email_change)
Send Verification Code Cancel
A verification code will be sent to your new email address.
@endif @if ($show_verification)
Verify & Update Email Resend Code Cancel
Verification code sent to {{ $new_email ?? auth()->user()->pending_email }}. The code is valid for {{ config('constants.email_change.verification_code_expiry_minutes', 10) }} minutes.
@endif

Change Password

Save
Resetting the password will logout all sessions.

Two-factor Authentication

@if (session('status') == 'two-factor-authentication-enabled')
Please finish configuring two factor authentication below. Read the QR code or enter the secret key manually.
@csrf Validate 2FA
{!! request()->user()->twoFactorQrCodeSvg() !!}
@elseif(session('status') == 'two-factor-authentication-confirmed')
Two factor authentication confirmed and enabled successfully.
Here are the recovery codes for your account. Please store them in a secure location.
@foreach (request()->user()->recoveryCodes() as $code)
{{ $code }}
@endforeach
@else @if (request()->user()->two_factor_confirmed_at)
Two factor authentication is enabled.
@csrf @method ('DELETE') Disable
@csrf Regenerate Recovery Codes
@if (session('status') == 'recovery-codes-generated')
Here are the recovery codes for your account. Please store them in a secure location.
@foreach (request()->user()->recoveryCodes() as $code)
{{ $code }}
@endforeach
@endif @else
@csrf Configure
@endif @endif @if (session()->has('errors'))
Something went wrong. Please try again.
@endif