From d50c629476f7911c1ea1d26dc062bf95df7db0d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Thu, 29 Jul 2021 15:26:01 +0200 Subject: [PATCH] Show a message about preauthorizing credit card --- .../gateways/mollie/credit_card/pay.blade.php | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/resources/views/portal/ninja2020/gateways/mollie/credit_card/pay.blade.php b/resources/views/portal/ninja2020/gateways/mollie/credit_card/pay.blade.php index bd57d1a5d8bc..d6a4d7db4f56 100644 --- a/resources/views/portal/ninja2020/gateways/mollie/credit_card/pay.blade.php +++ b/resources/views/portal/ninja2020/gateways/mollie/credit_card/pay.blade.php @@ -28,6 +28,31 @@ ctrans('texts.credit_card')]) @include('portal.ninja2020.gateways.includes.payment_details') + @component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.pay_with')]) + @if(count($tokens) > 0) + @foreach($tokens as $token) + + @endforeach + @endif + + + @endcomponent + @component('portal.ninja2020.components.general.card-element-single')
@endcomponent + @component('portal.ninja2020.components.general.card-element-single') + If you want to save the card for future purchases, please click on the + Payment methods page and authorize the credit card manually. + + + After that, come back to this page and select your payment method. + @endcomponent + @include('portal.ninja2020.gateways.includes.pay_now') @endsection