Recover Password
In the case of an user forgetting the credentials there is the possibility of resetting them. For resetting the password the user should use the Forgot password? button from the login page. The user must provide the email for the account and after that a link will be sent for resetting the password to the provided mail address.
TheApp\Http\Controllers\Auth\ForgotPasswordController
and the
App\Http\Controllers\Auth\ResetPasswordController
handles the recovery of the password.
The App\Http\Controllers\Requests\PasswordRequest
helps with the validation for the new credentials.
It is checked if the new password is different than the old one and if it is at least 6 characters long.