src/Elements/Bundle/DemiFrontendBundle/Resources/views/Includes/cards/form-groups/wish.html.twig line 1

Open in your IDE?
  1. {% set controller = (app.request.get('_template') is not empty ? app.request.get('_template').getTemplate().get('controller') : 'checkout')|lower %}
  2. <section class="card-body {{ controller ~ '-wish' }}">
  3.     <div class="row">
  4.         <div class="col-12">
  5.             <label for="comment" class="h4 mb-3">{{ 'demi.booking.checkout.special-wishes'|trans }}</label>
  6.             {%  set wish = optionalData is not null ? optionalData.comment : '' %}
  7.             <textarea name="comment" id="comment" rows="7" class="form-control form-control--gray">{{ wish }}</textarea>
  8.         </div>
  9.     </div>
  10. </section>