Owl\Http\Requests\UserPasswordRequest::rules PHP Method

rules() public method

Get the validation rules that apply to the request.
public rules ( ) : array
return array
    public function rules()
    {
        return ["password" => "required|alpha_num|min:4", "new_password" => "required|alpha_num|min:4"];
    }
UserPasswordRequest