mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-15 01:20:59 +00:00
11 lines
510 B
Twig
11 lines
510 B
Twig
<h1>Country updating <small>Use this form to edit existing country</small></h1>
|
|
<hr />
|
|
|
|
<form action="{{ path('sylius_country_update', {'id': country.id}) }}" method="post" class="form-horizontal" novalidate>
|
|
{% include 'SyliusAddressingBundle:Country:_form.html.twig' %}
|
|
<div class="form-actions">
|
|
<input type="submit" value="save changes" class="btn btn-large btn-primary" />
|
|
|
|
<a href="{{ path('sylius_country_list') }}" class="btn btn-large">cancel</a>
|
|
</div>
|
|
</form>
|