If I have select in HTML like this, how would I validate this at least 2 must be selected before posting, they must select at least 2, more than 1 selected.
<select id="selection" required name="selection[]" class="multiselect form-control" multiple="multiple">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>