Unexpected token "name" of value "as" ("end of statement block" expected) in
home/src/Acme/UserBundle/Resources/views/Default/tpl.html.twig
the template has an attempt to assign a twig variable
....
{% set name as "value" %}
...
try not assigning a variable but instead capturing from the html body
{% if (foo==0 ) %}{% set foo2 %}text1{% endset %}{% else %}{% set foo2 %}text2{% endset %}{% endif %}
Comments