Your profile page lets you manage the personal details attached to your Stratus account. Access it atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/AlexanderDamont1/Stratus/llms.txt
Use this file to discover all available pages before exploring further.
/profile while logged in. You can update your name and email address, change your password, or permanently delete your account.
Accessing your profile
Navigate to/profile from the dashboard or the navigation menu. You must be authenticated to reach this page — unauthenticated requests are redirected to /login.
Updating your name or email
Open the profile edit form
On the profile page, locate the Profile Information section. The form displays your current name and email address.
Make your changes
Edit the Name and/or Email fields as needed. Both fields are required and validated before saving.
verified middleware will redirect you to the verification notice screen.
Changing your password
Password changes are handled separately from profile information. From the profile page, locate the Update Password section.Enter a new password
Type your new password and confirm it in the second field. The two values must match.
Deleting your account
Account deletion is permanent and cannot be undone.Open the delete account section
Scroll to the Delete Account section at the bottom of the profile page.
Confirm your password
Enter your current password. This confirmation is required to prevent accidental or unauthorized deletions. Stratus validates this against the
current_password rule.- Logs you out of your current session
- Deletes your user record from the database
- Invalidates the session entirely
- Regenerates the CSRF token
- Redirects you to the application home page (
/)
Profile fields reference
| Field | Validation | Notes |
|---|---|---|
| Name | Required, string, max 255 characters | Stored as-is. |
| Required, must be a valid email, lowercase, unique (ignoring your own current address) | Changes reset email verification status. |
The email field enforces lowercase — any uppercase characters you enter are treated as their lowercase equivalent. This is enforced by the
ProfileUpdateRequest validation rules.Frequently asked questions
Why do I need to verify my email again after updating it?
Why do I need to verify my email again after updating it?
When you change your email address, Stratus sets
email_verified_at to null on your account. This means your new address is unverified until you click the confirmation link sent to it. Routes protected by the verified middleware — like the dashboard — will be inaccessible until you complete this step.Can I recover a deleted account?
Can I recover a deleted account?
No. Account deletion is permanent. Once your account is deleted and your session is invalidated, there is no recovery path. Contact your system administrator before proceeding if you are unsure.
Does changing my password log me out?
Does changing my password log me out?
No. Updating your password from the profile page does not terminate your current session. You remain logged in with the new credentials active.
What happens to my data when I delete my account?
What happens to my data when I delete my account?
Your user record is removed from the database. Depending on how your Stratus instance is configured, related records such as transactions or settings may also be affected. Check with your administrator if data retention matters to you.
Related pages
Authentication
Registration, login, and password reset flows
Dashboard
Return to the main home screen