{{ 'billing.review.title' | translate }}

{{ 'billing.review.subscribe_to' | translate: { account: 'account.type.' + account | translate } }}

@if (prices && currency) {
{{ (budget ? 'billing.review.cost' : 'billing.review.cost-without-limit') | translate : { cost: monthly ? (prices.recurring?.month?.price || 0 | currency: currency) + '/' + ('billing.month' | translate) : (prices.recurring?.year?.price || 0 | currency: currency) + '/' + ('billing.year' | translate), budget: budget | currency: currency } }}
}
@if (customer) {

{{ 'billing.billing_details' | translate }}

@if (customer.billing_details.is_company && customer.billing_details.company) {
{{ customer.billing_details.company }}
} @if (customer.billing_details.is_company && customer.billing_details.vat) {
{{ customer.billing_details.vat }}
}
{{ customer.billing_details.name }}
{{ customer.billing_details.email }}
{{ customer.billing_details.phone }}
{{ customer.billing_details.address }}
{{ customer.billing_details.city }} {{ customer.billing_details.postal_code }}
{{ customer.billing_details.state || '' }} {{ countries[customer.billing_details.country] }}
} @if (token) {

{{ 'billing.payment_details' | translate }}

{{ token.card.brand }}
**** **** **** {{ token.card.last4 }}
} @if (customer?.billing_details?.country === 'ES') {
{{ 'billing.without_vat' | translate }}
}
{{ 'billing.review.confirm_subscription' | translate }}