Edit Account
Users can change their name, picture, and decide if they want to use an extra security layer called 2FA. They can also pick a new password by clicking the "Change Password" button.
Login as an Admin > Edit Account


When users go to the "Edit Account" page, they can modify their name, profile picture, and choose whether to turn on or off something called 2FA, which adds extra security. But they can't change their email. If users want to make a new password, they can do that by clicking a button that says 'Change Password'.
Change password


Change Password page validations are as below,
Password length must be at least 8 characters.
The new password should match the confirmed password.


A banner indicating the successful update of the password is displayed below. The user is then directed to the My Account page.

Below are the related DB tables:
users
Edit account function path
app/Http/Controllers/Admin/Account/AccountController.php->edit()
app/Http/Controllers/Admin/Account/AccountController.php->update()
Change password function path
app/Http/Controllers/Admin/Account/AccountController.php->change_password()
app/Http/Controllers/Admin/Account/AccountController.php->update_pass word()
Image upload path
AWS S3 BUCKET - vconforsmb > user folde
Last updated