From 7515ccd3213ad989f48c9b68af9da5ad85468e69 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 1 Jan 2017 13:29:11 +0200 Subject: [PATCH] Fix quote terms/signature label --- resources/views/invoices/view.blade.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/resources/views/invoices/view.blade.php b/resources/views/invoices/view.blade.php index 9ced648f25cf..77a8b28dda52 100644 --- a/resources/views/invoices/view.blade.php +++ b/resources/views/invoices/view.blade.php @@ -323,9 +323,11 @@
-
- {!! nl2br(e($invoice->terms)) !!} -
+ @if ($invoice->terms) +
+ {!! nl2br(e($invoice->terms)) !!} +
+ @endif @if ($account->showSignature($invoice))
{{ trans('texts.sign_here') }} @@ -343,7 +345,9 @@
@endif - +