Skip to content

Instantly share code, notes, and snippets.

@craue
Created December 8, 2011 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save craue/1446863 to your computer and use it in GitHub Desktop.
Save craue/1446863 to your computer and use it in GitHub Desktop.
custom labels for Symfony2 repeated field
<div>
{{ form_label(form.myField.first, '1st label') }}
{{ form_errors(form.myField) }}
{{ form_widget(form.myField.first) }}
</div>
<div>
{{ form_label(form.myField.second, '2nd label') }}
{{ form_widget(form.myField.second) }}
</div>
@LNGi
Copy link

LNGi commented Jul 2, 2012

nice, thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment