armani
armani

Reputation: 313

change " password reset " url link

I'm trying to create a different url link for laravel password reset. by default that link is :

mysite/html/password/reset/74d9f53e5b8166ba0544122d1dc4451a76f707f4

whereas, i want to be this :

mysite/html/auth/resetpassword/74d9f53e5b8166ba0544122d1dc4451a76f707f4

Upvotes: 2

Views: 5467

Answers (1)

Richie
Richie

Reputation: 1439

Simply change the URI. Use something like URL::to('auth/resetpassword/'.$token);

Upvotes: 2

Related Questions