Reset user passwords in Laravel framework
问题 I'm trying to implement the password reminder according to this: http://laravel.com/docs/4.2/security I used the artisan commands : php artisan auth:reminders-table php artisan migrate and added this to my routes: Route::controller('password', 'RemindersController'); Route::get('forgotpassword', 'RemindersController@getRemind'); so now when I go to this page : myapp/forgotpassword I get the password.remind view which has the following code: <?php include_once(app_path()."/includes/header.php"