templates/app/company/tabs/other-details.html.twig line 1
<div class="tab-pane" id="other-details" role="tabpanel">
<h4>{% trans %} Autre Détails {% endtrans %}</h4>
<br />
{{ form_start(form_other_details, {'attr': {'class': 'form theme-form'}}) }}
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form_other_details.rc) }}
</label>
<div class="col-sm-8">
{{ form_widget(form_other_details.rc) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form_other_details.rc) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form_other_details.rc) }}</small>
</div>
</div>
</div>
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form_other_details.nif) }}
</label>
<div class="col-sm-8">
{{ form_widget(form_other_details.nif) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form_other_details.nif) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form_other_details.nif) }}</small>
</div>
</div>
</div>
<div class="mb-3 row">
<label class="col-sm-3 col-form-label">
{{ form_label(form_other_details.nis) }}
</label>
<div class="col-sm-8">
{{ form_widget(form_other_details.nis) }}
<div class="text-danger" style="margin-top: 0.25rem">
<small>{{ form_errors(form_other_details.nis) }}</small>
</div>
<div class="text-info" style="margin-top: 0.25rem">
<small>{{ form_help(form_other_details.nis) }}</small>
</div>
</div>
</div>
<div class="text-end pt-4">
<button type="submit" class="btn btn-primary">
{% trans %} Mise à jour {% endtrans %}
</button>
</div>
{{ form_end(form_other_details) }}
</div>