The 'sometimes' part might make it so that if you do not select anything, it treats it as not required?
Have you tried this? Maybe this will allow you to keep the sometimes: http://stackoverflow.com/questions/21375876/validating-radio-buttons-in-laravel-4
yup tried that...still ignores it. the same thing was happening to my checkbox and this fixed it:
{{ Form::hidden('termsAgree', false) }}
{{ Form::checkbox('termsAgree', 'yes')}}
just putting that hidden field before it makes it validate and not be ignored.
reference: http://nielson.io/2014/02/handling-checkbox-input-in-laravel/
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community