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

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -