sibanu_web/app/Rules/CurrentPasswordCheckRule.php

32 lines
642 B
PHP
Raw Permalink Normal View History

2022-08-20 13:21:23 +07:00
<?php
namespace App\Rules;
use Illuminate\Support\Facades\Hash;
use Illuminate\Contracts\Validation\Rule;
class CurrentPasswordCheckRule 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 __('The current password field does not match your password');
}
}