FormHelper::input()
adds automatically lots of fancy stuff I need:
- Display a label
- Tag required fields with an asterisk
- Highlight fields that failed validation
- Display validation errors
However, FormHelper::select()
doesn’t do anything of this. I’m forced to replicate all the stuff manually.
Is that the way it’s meant to be?