如果我使用Laravel 5.8恢复密码并保存带有特殊字符的新密码:
例如:Stack1!
重置完成,但是当我可以登录时给我一个错误密码。
为什么?
UPDATE:
模型配置:
public function setPasswordAttribute($password){
$this->attributes['password'] = bcrypt($password);
}
ResetPasswords:
$user->password = html_entity_decode($password);
$user->setRememberToken(Str::random(60));
$user->save();
event(new PasswordReset($user));
我还没有解决我的问题。请帮助我!!