templates/shop/edit.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Edit Shop{% endblock %}
  3. {% block body %}
  4.     <div class="d-flex justify-content-between align-items-center mt-4">
  5.         <h1>{{ shop.name }}</h1>
  6.         <div class="d-flex align-items-center gap-4">
  7.             <a href="{{ path('app_shop_index') }}">{{ "back to list"|trans }}</a>
  8.             {# { include('shop/_delete_form.html.twig') }#}
  9.         </div>
  10.     </div>
  11.     {{ include('shop/_form.html.twig', {'button_label': 'Update'}) }}
  12.     {# { include('shop/_delete_form.html.twig') }#}
  13.     {# %  include 'stock/_list.html.twig' %#}
  14. {% endblock %}