{% extends 'base.html.twig' %} {% block title %}{{ product.name }} - Yggdrasil{% endblock %} {% block content %}

Nos produits

{% if app.session.flashBag.has('success') %}
{% for msg in app.session.flashBag.get('success') %} {{ msg }} {% endfor %}
{% endif %}
{% for message in app.flashes('notice')%}
{{ message }}
{% endfor %}
{% if product.attachments is not empty %} {% else %} {{ product.name }} {% endif %}

{{ product.name }}

{{ product.subtitle }}

{{ (product.price / 100)|number_format(2,',', '.')}} €


{{ product.description }}

Choisir la dimension de votre bracelet :
{{ form_start(form, {'attr': {'class': 'mt-4 p-4 bg-light'}}) }}
{{ form_label(form.dimension) }} {{ form_widget(form.dimension, { 'attr': { 'class': 'form-control ' ~ (form.dimension.vars.valid ? '' : 'is-invalid') } }) }}
{{ form_errors(form.dimension) }}
{{ form_label(form.quantity) }} {{ form_widget(form.quantity, { 'attr': { 'class': 'form-control ' ~ (form.quantity.vars.valid ? '' : 'is-invalid') } }) }}
{{ form_errors(form.quantity) }}
{{ form_end(form) }}

Best Sellers

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia

{% for product in products %}
{% include 'product/single_product.html.twig' %}
{% endfor %}
{% endblock %}