Hi! I have a form that contains checkboxes.
<input type="checkbox" name="question[5][13]" value="1" />
Now, I want to use the Kohana validation class, but it seems like it does not validate fields that are array... had anyone ever worked something around?
I have something like this, but it will not work:
$rules->rule('question[5][13]', 'not_empty');