Hello, thanks so much for the video. I have an error, the reset page is displaying even when I use just 1 as the token, the page works even with tokens that doesn’t exist in password_resets table.
sir thaks for your tutorials i'm just wondering if u have any other solution because i ry to set access of an secure apps ,and google does not allow this any more !
Not needed, but it's better to verify users email while registering the account - if the email is not found or wrong this will not send the reset password email
you can make the process of resetting password to be handled using Laravel, in this case the user will be redirected to the url of your API. It's easier than recreating this the entire logic for the api and the front-end part
When i click the link in mail it redirect to right route but it is localhost/ not 127.0.0.1:8000/, so it alert The requested URL was not found on this server. Can u help me ?
Thanks, it was a very useful video. But I didn't understand one thing. User is already requesting password reset by typing their e-mail address. Why are we asking for the email address again in the form? Wouldn't it be better if we only ask password and confirm password? Is it possible to do this?
long video. but all message is clear. thanks boss for your awesome video.
You are most welcome
keep up the good work ,your follower from jordan with love ❤❤
Thank you! Will do!
Thanks for the video! we need more laravel video's , oke
Yes we are working on it
salamw alaikm , this guy is awsome
Glad you liked it
Thank you so much!
Glad it helped!
Thanks man, it's working.
You're welcome!
Hello, thanks so much for the video. I have an error, the reset page is displaying even when I use just 1 as the token, the page works even with tokens that doesn’t exist in password_resets table.
Good morning, afternoon or evening, I have a question, where is "reset-password" from? I don't see a view with that name in the video.
sir thaks for your tutorials i'm just wondering if u have any other solution because i ry to set access of an secure apps ,and google does not allow this any more !
Thank you
You're welcome
thank you brother. So, the user's email doesn't have to be verified for using this reset password feature?
Not needed, but it's better to verify users email while registering the account - if the email is not found or wrong this will not send the reset password email
hi thanks for thos good video,
i want to ask whtch text editor you use?
PHPStorm
Hi, what if I want the frontend to be in React? Is there something unique I will have to bear in mind?
you can make the process of resetting password to be handled using Laravel, in this case the user will be redirected to the url of your API. It's easier than recreating this the entire logic for the api and the front-end part
When i click the link in mail it redirect to right route but it is localhost/ not 127.0.0.1:8000/, so it alert The requested URL was not found on this server. Can u help me ?
hey why url resetpasssword/token not found ?
Check your routes web.php you might not have the route specified
next part of laravel pls
Yes, soon. We are working on new Laravel course series. coming soon
I got success message for sending mail. but I didn't recieve emails. can you help me
Most probably it could be an issue with the SMTP server
Thanks, it was a very useful video. But I didn't understand one thing. User is already requesting password reset by typing their e-mail address. Why are we asking for the email address again in the form? Wouldn't it be better if we only ask password and confirm password? Is it possible to do this?
It is definitely possible, but it's a bit more secure to ask for email in case someone gets the password reset link by chance.
@@CodesEasy thanks for answer
one video on email verification in laravel.
Sure👍
i got an error when clicking on email (reset password) error:The GET method is not supported for this route. Supported methods: POST.
The route is defined as post, check the video you might want to set it as get.
@@CodesEasy I have done as it is in the video again i got msg like this.
The GET method is not supported for this route. Supported methods: POST.
try and use "any" in routes. Route: :any()@@survival_gamingyt
@@survival_gamingyt you can use any method
how to reset the password without typing
email in the resetting form??
The user will have to know the previous password or send an email or send otp etc
Thank you video but env file explain password is needed
What is the error you are getting. If you are not able to connect to the database check your db credentials, username, host, password etc
but i am trying to set access of an secure apps ,and google does not allow this any more !🤷♂🤷♂🤷♀🤷♀
What are you trying to do?
hi can you please add a email verification to it?
Sure👍
Im getting
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry for key 'PRIMARY'
You are trying to enter the same value for the primary key. Primary key will be unique in nature