Skip to content

Commit

Permalink
remove unnecessary bag
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Sep 20, 2020
1 parent af29e1d commit 85a7dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/ResetUserPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function reset($user, array $input)
{
Validator::make($input, [
'password' => $this->passwordRules(),
])->validateWithBag('updatePassword');
])->validate();

$user->forceFill([
'password' => Hash::make($input['password']),
Expand Down

0 comments on commit 85a7dfb

Please sign in to comment.