33 lines
611 B
PHP
Executable File
33 lines
611 B
PHP
Executable File
<?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');
|
|
}
|
|
}
|