Answer the question
In order to leave comments, you need to log in
Laravel input->file not validating?
Field:
<input type="file" name="video" required="required">
'user_id' => 'required|integer',
'video' => 'required|file', // если эта строка есть, выдает ошибку
'title' => 'required|string|max:255',
'description' => 'string|nullable|max:555',
The video failed to upload.
if($request->hasFile('video'))
{
dd($request->file('video'));
}
Answer the question
In order to leave comments, you need to log in
What if something like that?
'video' => 'required|mimes:mp4,x-flv,x-mpegURL,MP2T,3gpp,quicktime,x-msvideo,x-ms-wmv'
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question