Answers for "return Hash::check($value, auth()->user()->password);"

0

return Hash::check($value, auth()->user()->password);

* Create a new rule instance.     *     * @return void     *//*public function __construct()    {        $this->middleware('auth');    }*/    /**     * 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 :attribute is match with old password.';    }} 
Posted by: Guest on April-22-2021

Code answers related to "return Hash::check($value, auth()->user()->password);"

Browse Popular Code Answers by Language