<form name="mdl_e_commerce_bundle_cartitem" method="post"
action="{{ path('mdl_public_individual_order_add_product', {id: depotProduct.id}) }}">
<div class="input-group">
<input type="text" id="mdl_e_commerce_bundle_order_item_quantity-{{ depotProduct.id }}"
name="mdl_e_commerce_bundle_order_item_quantity[quantity]"
required="required"
min="1"
class="input-sm price-input form-control"
value="{{ depotProduct.quantity }}"
>
{%- set iconBgColor = depotProduct.depot.color('icon_bg') -%}
{%- set iconTextColor = depotProduct.depot.color('icon_text') -%}
<button class="btn btn-link float-right ml-2 mr-2"
{% if depotProduct.depot.translate().info is not null %}
data-toggle="tooltip"
data-html="true"
data-container="body"
title="{{ depotProduct.depot.translate().info|shortCodes|e }}"
{% endif %}
>
<img src="{{ asset('assets/static/cart-' ~ iconBgColor ~ '.svg') }}" alt="Cart icon">
</button>
</div>
</form>