You need to be more specific but hopefully the following can help you.
Lets assume you have a variable called form
.
{{ form_errors(form) }}
Displays global errors not specific to one field
{{ form_errors(form.email) }}
Displays errors specific to field
{{ form_row(form.email) }}
Displays form_widget form_label and form_errors for field
http://symfony.com/doc/2.0/cookbook/form/form_customization.html
Edit:
So if you want your global and field errors to be displayed in he same place you can do:
{{ form_errors(form) }}
{{ form_errors(form.field1) }}
{{ form_errors(form.field2) }}
...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…