Skip to content

Commit

Permalink
Merge pull request #22 from DivineOmega/feature/fix-reset-password-co…
Browse files Browse the repository at this point in the history
…ntroller

Fix reset password controller
  • Loading branch information
DivineOmega authored Feb 27, 2019
2 parents 72cd06c + 6847cef commit 92da714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/ResetPasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected function rules()
return [
'token' => 'required',
'email' => 'required|email',
'password' => PasswordRules::changePassword($this->email),
'password' => PasswordRules::changePassword(request()->email),
];
}
}

0 comments on commit 92da714

Please sign in to comment.