new.html.twig
332 Bytes
{% extends 'base.html.twig' %}
{% block body %}
<h1>Estado creation</h1>
{{ form_start(form) }}
{{ form_widget(form) }}
<input type="submit" value="Create" />
{{ form_end(form) }}
<ul>
<li>
<a href="{{ path('estado_index') }}">Volver</a>
</li>
</ul>
{% endblock %}