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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -