I want to print all the validation errors together, and not each error next to each field.
But form_errors(form) isn't working.
I can print individual errors, so I thought I could just use form_errors(form.some_field) for each field. The problem is that it prints errors like 'This field cannot be blank', which is meaningless unless it is next to the field.
Any thoughts?