-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reset Password Fails #84
Comments
I have the same problem |
There are some tests here you can use as hints: https://github.com/francescomalatesta/laravel-api-boilerplate-jwt/blob/master/tests/Functional/Api/V1/Controllers/ResetPasswordControllerTest.php Right now functional tests for this feature are working the right way :) |
For future readers: As per the Laravel default password validator, the password must be a minimum of 6 characters (unless overridden). Enforcing this minimum resolved the error in my case. |
I found that in ResetPasswordController
$response = passwords.password |
Hi everyone....
I am facing the an issue when I am trying to do a password reset. I am passing the required parameters in postman body. Upon tracing, I have found that when API is called in response it gets password.passwords instead of getting password.reset. and at the end hits throw new HttpException(500); . I am following all the steps but it seems that something is missing would really appreciate any help on this one.. .
The text was updated successfully, but these errors were encountered: