Browse Source

Fix a few password reminder things.

Taylor Otwell 10 years ago
parent
commit
36e0014a6a

+ 1 - 1
app/Http/Controllers/Auth/PasswordController.php

@@ -63,7 +63,7 @@ class PasswordController extends Controller {
 	/**
 	 * Display the password reset view for the given token.
 	 *
-	 * @Get("password/reset")
+	 * @Get("password/reset/{token}")
 	 *
 	 * @param  string  $token
 	 * @return Response

+ 1 - 0
database/migrations/2014_10_12_000000_create_users_table.php

@@ -17,6 +17,7 @@ class CreateUsersTable extends Migration {
 			$table->increments('id');
 			$table->string('email')->unique();
 			$table->string('password', 60);
+			$table->rememberToken();
 			$table->timestamps();
 		});
 	}