0
I’m using Multiple to insert more than one file, but I’m not able to validate the size and format when one or more videos is inserted.
form:
<input type="file" name="anexo3[]" class="form-control @error('anexo3') is-invalid @enderror" multiple >
the validation I’m using:
public function rules()
{
return [
'anexo3' => ['mimes:mp4,mov,ogg,qt','max:2000']
];
}