templates/app/child/_partials/overview.html.twig line 1
<div class="tab-pane" id="overview-tab" role="tabpanel">
<div class="card">
<div class="card-header">
<h5 class="card-title mb-0">{% trans %} Aperçu {% endtrans %}</h5>
</div>
<div class="card-body px-0">
<div class="card-body">
<div class="row justify-content-center">
<div class="col-8">
{{ form_start(overview_form) }}
<div class="row mb-4">
<label
for="horizontal-description-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.description) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.description) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.description) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.description) }}</small>
</div>
</div>
</div>
<div class="row mb-4">
<label
for="horizontal-diseases-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.diseases) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.diseases) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.diseases) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.diseases) }}</small>
</div>
</div>
</div>
<div class="row mb-4">
<label
for="horizontal-allergies-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.allergies) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.allergies) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.allergies) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.allergies) }}</small>
</div>
</div>
</div>
<div class="row mb-4">
<label
for="horizontal-food_habit-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.food_habit) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.food_habit) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.food_habit) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.food_habit) }}</small>
</div>
</div>
</div>
<div class="row mb-4">
<label
for="horizontal-behavior-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.behavior) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.behavior) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.behavior) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.behavior) }}</small>
</div>
</div>
</div>
<div class="row mb-4">
<label
for="horizontal-fears-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.fears) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.fears) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.fears) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.fears) }}</small>
</div>
</div>
</div>
<div class="row mb-4">
<label
for="horizontal-interests-input"
class="col-sm-3 col-form-label"
>
{{ form_label(overview_form.interests) }}
</label>
<div class="col-sm-9">
{{ form_widget(overview_form.interests) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(overview_form.interests) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(overview_form.interests) }}</small>
</div>
</div>
</div>
<br />
<div class="row mb-4 my-4 justify-content-end">
<div class="col-6">
<button
type="submit"
class="btn btn-primary waves-effect waves-light float-right"
>
<i class="mdi mdi-square-edit-outline me-1"></i>
{% trans %} Mise à jour {% endtrans %}
</button>
</div>
</div>
{{ form_end(overview_form) }}
</div>
</div>
</div>
</div>
</div>
</div>