{% extends 'admin/base.html.twig' %} {% block title %}Mon profil{% endblock %} {% block description %}Bienvenue dans votre espace personnel.{% endblock %} {% block body %} {% if success %}
Parfait ! Vos paramètres ont bien été mis à jour.
{% endif %}
Profile Picture

{{ user.firstname | capitalize }} {{ user.lastname | upper }}


Mon offre

{{ site.product.name }}


A propos de moi

{{ site.contact.postCode }} {{ site.contact.city }}, {{ site.contact.country }}

{% if site.contact.phone %}

{{ site.contact.phone }}

{% endif %}

{% if site.domainActif and site.domain %} {{ site.domain }} {% else %} {{ site.internalName }} {% endif %}

{{ form_start(form) }}
{{ form_label(form.societyName, null, {'label_attr':{'class':'g-mb-10'}}) }} {{ form_widget(form.societyName, {'attr':{'class':'form-control form-control-md rounded-0'}}) }}
{{ form_label(form.address1, null, {'label_attr':{'class':'g-mb-10'}}) }} {{ form_widget(form.address1, {'attr':{'class':'form-control form-control-md rounded-0'}}) }}
{{ form_label(form.address2, null, {'label_attr':{'class':'g-mb-10'}}) }} {{ form_widget(form.address2, {'attr':{'class':'form-control form-control-md rounded-0'}}) }}
{{ form_label(form.postalCode, null, {'label_attr':{'class':'g-mb-10'}}) }} {{ form_widget(form.postalCode, {'attr':{'class':'form-control form-control-md rounded-0'}}) }}
{{ form_label(form.city, null, {'label_attr':{'class':'g-mb-10'}}) }} {{ form_widget(form.city, {'attr':{'class':'form-control form-control-md rounded-0'}}) }}
{{ form_end(form) }}

Mon avis de prochain prélèvement : Le {{ invoiceUpcoming.next_payment_attempt|date("d/m/Y") }}.

Offre : {{ site.product.name }} pour la période du {{ invoiceUpcoming.period_start|date("d/m/Y") }} au {{ invoiceUpcoming.period_end|date("d/m/Y") }}.
Montant : {{ (invoiceUpcoming.amount_due / 100) | number_format(2,',',' ') }} € TTC.
Mes moyens de paiements (cartes bancaires) :
{% if cards|length > 0 %} {% for card in cards %} {% endfor %} {% else %} {% endif %}
Type Défaut Titulaire Carte Expiration Action
{% if card.brand == 'Visa' %} VISA {% else %} {{ card.brand }} {% endif %} {% if customer.default_source.id == card.id %} Par défaut {% endif %} {{ card.name }} **** {{ card.last4 }} {{ card.exp_month }}/{{ card.exp_year }} {% if customer.default_source.id != card.id %} {% endif %}
Aucun carte recensée
{% endblock %} {% block javascripts %} {% endblock %}