@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.pay_now')) @push('head') @endpush @section('body')
@csrf

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

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

{{ ctrans('texts.subtotal') }}
{{ App\Utils\Number::formatMoney($total['invoice_totals'], $client) }}
{{ ctrans('texts.gateway_fees') }}
{{ App\Utils\Number::formatMoney($total['fee_total'], $client) }}
{{ ctrans('texts.total') }}
{{ App\Utils\Number::formatMoney($total['amount_with_fee'], $client) }}
@if($token)
{{ ctrans('texts.credit_card') }}
{{ strtoupper($token->meta->brand) }} - **** {{ $token->meta->last4 }}
@else
{{ ctrans('texts.name') }}
{{ ctrans('texts.credit_card') }}
{{ ctrans('texts.token_billing_checkbox') }}
@endif
@endsection @push('footer') @endpush