Fix a few password reminder things.
This commit is contained in:
parent
c10ad6269e
commit
36e0014a6a
|
@ -63,7 +63,7 @@ public function sendResetLink(Request $request)
|
||||||
/**
|
/**
|
||||||
* 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 @@ public function up()
|
||||||
$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();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue