restore composer.json, add mysqli extension
This commit is contained in:
32
app/Rules/MatchOldPassword.php
Executable file
32
app/Rules/MatchOldPassword.php
Executable file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace App\Rules;
|
||||
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Contracts\Validation\Rule;
|
||||
|
||||
class MatchOldPassword implements Rule
|
||||
{
|
||||
/**
|
||||
* Determine if the validation rule passes.
|
||||
*
|
||||
* @param string $attribute
|
||||
* @param mixed $value
|
||||
* @return bool
|
||||
*/
|
||||
public function passes($attribute, $value)
|
||||
{
|
||||
return Hash::check($value, auth()->user()->password);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation error message.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function message()
|
||||
{
|
||||
return trans('vue.change_password.validate');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user