E
E
EVOSandru62018-12-06 23:24:33
Laravel
EVOSandru6, 2018-12-06 23:24:33

How to change password.reset route in Laravel 5.7?

Good afternoon
Password recovery question:

ForgotPasswordController {
...
public function sendResetLinkEmail(Request $request)
    {
        $this->validateEmail($request);

        $response = $this->broker()->sendResetLink(
            $request->only('email')
        );

        return $response == Password::RESET_LINK_SENT
            ? $this->sendResetLinkResponse($response)
            : $this->sendResetLinkFailedResponse($request, $response);
    }

How can I make it spit out on another.password.reset instead of password.reset ?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question