I have following fields in HTMl form,
<div class="col-md-6"><input type="file" name="images[]"></div>
<div class="col-md-6"><input type="file" name="images[]"></div>
<div class="col-md-6"><input type="file" name="images[]"></div>
<div class="col-md-6"><input type="file" name="images[]"></div>
<div class="col-md-6"><input type="file" name="images[]"></div>
<div class="col-md-6"><input type="file" name="images[]"></div>
When I submit the form then I get images[] array in PHP. I am using Laravel framework for form validation. I have been using validator and rules. But I want to apply rule of required and max size to each image from the above array. Thanks.