Création d'une location
{{ form_start(form) }}
{{ form_label(form.property) }}
{{ form_widget(form.property,{'attr': {'class': 'form-control'}}) }}
{{ form_label(form.tenant) }}
{{ form_widget(form.tenant, {'attr': {'class': 'form-control'}}) }}
{{ form_row(form.monthly_rent) }}
{{ form_row(form.frequence_loyer) }}
{{ form_row(form.start_date) }}
{{ form_row(form.end_date) }}
{{ form_row(form.jour_echeance) }}
{{ form_row(form.generation_loyer) }}
{{ form_end(form) }}
{# include formlaire Tenant #}
{{ include('rental/_tenant.html.twig') }}
{# include formlaire Property #}
{{ include('rental/_property.html.twig') }}
Retour