I am working on a project using Laravel 5 and I am trying to figure out how to reset passwords. I know the migration for the password resets is already there but I remember there was a ReminderController in Laravel 4 which I could generate but I cannot find the same in Laravel 5.
I am sure that Laravel 5 ships with a password reset mechanism but I cannot exactly figure out where to send the request and the method which handles sending the emails?
I can find the views and the migration but can anyone help me find the controller method and route. If anyone can provide me with a tutorial, I could work with that too.
ResetsPasswordstrait which is responsible for the logic and methods and I also found thepostEmailmethod and realized that I have to send th request with the email to/password/email. I am using it but the email is not sent. I have all my settings for mail done right. Activation emails are being sent correctly. Any idea about that?