Commit 36e0014a authored by Taylor Otwell's avatar Taylor Otwell

Fix a few password reminder things.

parent c10ad626
...@@ -63,7 +63,7 @@ class PasswordController extends Controller { ...@@ -63,7 +63,7 @@ class PasswordController extends Controller {
/** /**
* Display the password reset view for the given token. * Display the password reset view for the given token.
* *
* @Get("password/reset") * @Get("password/reset/{token}")
* *
* @param string $token * @param string $token
* @return Response * @return Response
......
...@@ -17,6 +17,7 @@ class CreateUsersTable extends Migration { ...@@ -17,6 +17,7 @@ class CreateUsersTable extends Migration {
$table->increments('id'); $table->increments('id');
$table->string('email')->unique(); $table->string('email')->unique();
$table->string('password', 60); $table->string('password', 60);
$table->rememberToken();
$table->timestamps(); $table->timestamps();
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment