templates/client/familyPrototype.html.twig line 1

Open in your IDE?
  1. <div class="family-item">
  2.     <div class="col-md-6">
  3.         {{ form_row(form.firstname) }}
  4.     </div>
  5.     <div class="col-md-6">
  6.         {{ form_row(form.lastname) }}
  7.     </div>
  8.     <div class="col-md-6">
  9.         {{ form_row(form.email) }}
  10.     </div>
  11.     <div class="col-md-6">
  12.         {{ form_row(form.phone) }}
  13.     </div>
  14.     <div class="col-md-6">
  15.         {{ form_row(form.type) }}
  16.     </div>
  17.     <div class="col-md-12">
  18.         <button type="button" class="btn btn-danger btnDeleteFamily">Suppresion d'un membre de la famille</button>
  19.     </div>
  20.     <div class="col-md-12 clearfix">
  21.         <hr>
  22.     </div>
  23. </div>
  24. </div>