{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Add a new point of sale' | trans %} {% if pointofsale.id %}{% set pagetitle = 'Update the point of sale' | trans %}{% endif %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{ "dashboard_index": ('Dashboard' | trans), "dashboard_organizer_pointofsale": ('my points of sale' | trans), "current":(pagetitle) }] %} {% include "Global/navigation.html.twig" with navigation %}
{% if pointofsale.id %} {% include "Global/message.html.twig" with { type: "info", icon: "fas fa-info-circle", "message": ("Leave the password empty to keep the old one"|trans) } %} {% endif %} {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {{ form_widget(form) }} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {% if pointofsale.id %} {% endif %} {% endblock %}