diff --git a/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php b/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php
index d5c9cde79a0a..96d3252d0c83 100644
--- a/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php
+++ b/resources/views/portal/ninja2020/flow2/invoices-summary.blade.php
@@ -33,7 +33,7 @@
{{ ctrans('texts.amount_due') }}
{{ $invoice->client->currency()->code }} ({{ $invoice->client->currency()->symbol }})
- {{ $invoice->partial > 0 ? $invoice->partial : $invoice->balance }}
+ {{ $invoice->partial > 0 ? \App\Utils\Number::formatValue($invoice->partial, $invoice->client->currency()) : \App\Utils\Number::formatValue($invoice->balance, $invoice->client->currency()) }}