I'm trying to enable reset password but I have troube with configuration so I made my function in controller to do it.
Route::post('/reset_password/{email}','MyController@resetPassword');
Now, In password.reset and password.email how to route to this /reset_password
<form class="form-horizontal" method="POST" action="{{ route('password.email') }}">
<form class="form-horizontal" method="POST" action="{{ route('password.request') }}">
->name()
or"as" => "..."
setting when trying to use named route functionroute("name")
. See laravel.com/docs/5.5/routing#named-routes for more info – Tim Lewis