From 36e0014a6a4bdb6c33e2146c0d38203e5cb4aa7a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 22 Oct 2014 19:16:02 -0500 Subject: [PATCH] Fix a few password reminder things. --- app/Http/Controllers/Auth/PasswordController.php | 2 +- database/migrations/2014_10_12_000000_create_users_table.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/Auth/PasswordController.php b/app/Http/Controllers/Auth/PasswordController.php index 79773fb7..ee5aa569 100644 --- a/app/Http/Controllers/Auth/PasswordController.php +++ b/app/Http/Controllers/Auth/PasswordController.php @@ -63,7 +63,7 @@ public function sendResetLink(Request $request) /** * Display the password reset view for the given token. * - * @Get("password/reset") + * @Get("password/reset/{token}") * * @param string $token * @return Response diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php index aed156ed..bbe3db32 100644 --- a/database/migrations/2014_10_12_000000_create_users_table.php +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -17,6 +17,7 @@ public function up() $table->increments('id'); $table->string('email')->unique(); $table->string('password', 60); + $table->rememberToken(); $table->timestamps(); }); }