1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Added sepa debit field to views

This commit is contained in:
Lars Kusch 2021-10-06 14:51:05 +02:00
parent 391a586645
commit 80c06f6849
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,7 @@
<div id="stripe--payment-container">
@unless(isset($show_name) && $show_name == false)
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.name')])
<input class="input w-full" id="cardholder-name" type="text" placeholder="{{ ctrans('texts.name') }}">
@endcomponent
@endunless
</div>

View File

@ -18,7 +18,7 @@
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.payment_type')])
{{ ctrans('texts.sofort') }} ({{ ctrans('texts.bank_transfer') }})
@endcomponent
@include('portal.ninja2020.gateways.stripe.sepa.sepa_debit')
@include('portal.ninja2020.gateways.includes.pay_now')
@endsection