Guest User

Untitled

a guest
Apr 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. {{ form(form) }}
  2.  
  3. {{ form_start(form) }}
  4. {{ form_widget(form.firstName) }}
  5. {{ form_widget(form.lastName) }}
  6. {{ form_end(form) }}
  7.  
  8. {{ form_start(form) }}
  9. {# somehow start loop data from the DB here #}
  10. <div class='block'>
  11. {{ form_widget(form.firstName) }}
  12. {{ form_widget(form.lastName) }}
  13. </div>
  14. {# somehow end loop data from the DB here #}
  15. {{ form_end(form) }}
Add Comment
Please, Sign In to add comment