Last Updated: February 25, 2016
·
667
· rodnaph

Symfony2 Form Theme Typos

Symfony2 allows some pretty flexible form theme customizing from the templating. You can override all parts of the form that will be displayed.

When working with this though it's very important to not include any typos in your block names. For example...

{% block _user_wigdet_row %}

Should actually be...

{% block _user_widget_row %}

Not including typos like this can save you potentially hours in debugging time, so be very careful for maximum pro-ness.