@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.credit')) @section('body')
@csrf

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

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

{{ ctrans('texts.subtotal') }}
{{ App\Utils\Number::formatMoney($total['invoice_totals'], $client) }}
@if($total['credit_totals'] > 0)
{{ ctrans('texts.credit_amount') }}
{{ App\Utils\Number::formatMoney($total['credit_totals'], $client) }}
@endif
{{ ctrans('texts.amount_due') }}
{{ App\Utils\Number::formatMoney($total['amount_with_fee'], $client) }}
@endsection