How do you copy a form array built using form builder in symfony 2 at the twig level?
I have the form group below, which creates a multi-layered form
{{ form_row(form.products.ItemOptions) }}
I was hoping to copy this array form.products.Options into new array in twig so i can display and edit it in another section on the same page.
I have tried using twigs merge function, and also jquery. Any help would be greatly appreciated