{{ $subscription->company->present()->name }}

{{ $subscription->name }}

@if(!empty($subscription->product_ids))

{{ ctrans('texts.one_time_purchases') }}

@foreach($subscription->service()->products() as $product)

{!! nl2br($product->notes) !!}

{{ \App\Utils\Number::formatMoney($product->price, $subscription->company) }}
@endforeach
@endif @if(!empty($subscription->recurring_product_ids))

{{ ctrans('texts.recurring_purchases') }}

@foreach($subscription->service()->recurring_products() as $product)
{!! nl2br($product->notes) !!}
{{ \App\Utils\Number::formatMoney($product->price, $subscription->company) }} {{-- (1x)--}}
@endforeach
@endif @if($subscription->per_seat_enabled && $subscription->max_seats_limit > 1)
{{ ctrans('texts.qty') }}:
{{ $quantity }}
@endif

{{ ctrans('texts.total') }} : {{ \App\Utils\Number::formatMoney($price, $subscription->company) }} @if($steps['discount_applied']) {{ \App\Utils\Number::formatMoney($subscription->price, $subscription->company) }} @endif

@if($subscription->service()->getPlans()->count() > 1)

{{ ctrans('texts.you_might_be_interested_in_following') }}:

@foreach($subscription->service()->getPlans() as $_subscription) @endforeach
@endif

{{ $heading_text ?? ctrans('texts.checkout') }}

@if (session()->has('message')) @component('portal.ninja2020.components.message') {{ session('message') }} @endcomponent @endif @if($steps['fetched_payment_methods'])
@csrf @if($invoice instanceof \App\Models\Invoice) @endif
@if($steps['started_payment'] == false) @foreach($this->methods as $method) @endforeach @endif @if($steps['started_payment'] && $steps['show_loading_bar']) @endif
@elseif(!$steps['payment_required'])
@csrf
@elseif($steps['show_start_trial'])
@csrf
@else
@csrf @if($steps['existing_user']) @if($steps['passwordless_login_sent']) {!! ctrans('texts.sent') !!} @endif @endif
@endif @if(!empty($subscription->promo_code) && !$subscription->trial_enabled)
{{ ctrans('texts.promo_code') }}
@csrf
@endif @if($steps['not_eligible'] && !is_null($steps['not_eligible']))

{{ ctrans('texts.payment_error') }}

@if($steps['not_eligible_message']) {{ $steps['not_eligible_message'] }} @endif @endif