Skip to content

Commit

Permalink
[5.3] fix cs of reset password rules
Browse files Browse the repository at this point in the history
  • Loading branch information
maldechavda committed Dec 12, 2016
1 parent ba6bd9e commit f7fb864
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Foundation/Auth/ResetsPasswords.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public function reset(Request $request)
protected function rules()
{
return [
'token' => 'required', 'email' => 'required|email',
'token' => 'required',
'email' => 'required|email',
'password' => 'required|confirmed|min:6',
];
}
Expand Down

0 comments on commit f7fb864

Please sign in to comment.