Method IlluminateValidationValidator::validateVideo does not exist. Can't fix – Laravel
I get this error after submitting the form. Here's the controller code. The error appears to be in the validate() part. public function store(Request $request) { $video = new Video(); $request->validate([ 'title' => 'required|max:68', 'description' => 'required|max:256', 'image' => 'image|mimes:jpeg,png,jpg,webp|max:2048',…