php - In Laravel how can I validate the count of multiple file upload -
in project have multiple file upload, user can upload pictures not more 3 , not less 3. how can validate this?
<input id="institute_pics" type="file" class="form-control" name="institute_pics[]" multiple> institute_pics' => 'required|max:3|min:3' //not working
Comments
Post a Comment