when i submit a form and run form validation then it gaves me this error but my form validation is working on other page In that file \vendor\laravel\framework\src\Illuminate\Validation\Validator.php
/**
* Handle dynamic calls to class methods.
*
* @param string $method
* @param array $parameters
* @return mixed
*
* @throws \BadMethodCallException
*/
public function __call($method, $parameters)
{
$rule = Str::snake(substr($method, 8));
if (isset($this->extensions[$rule])) {
return $this->callExtension($rule, $parameters);
}
throw new BadMethodCallException(sprintf(
'Method %s::%s does not exist.', static::class, $method
));
}
Errror= Method Illuminate\Validation\Validator::validateRequest does not exist