diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 44f0fccf1b77..a30cfdd4441a 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2566,6 +2566,7 @@ $LANG = array( 'verification_file_missing' => 'The verification file is needed to accept payments.', 'apple_pay_domain' => 'Use :domain as the domain in :link.', 'apple_pay_not_supported' => 'Sorry, Apple/Google Pay isn\'t supported', + 'optional_payment_methods' => 'Optional Payment Methods', ); diff --git a/resources/views/accounts/account_gateway.blade.php b/resources/views/accounts/account_gateway.blade.php index 76cdded0d343..2baa8a7fef6c 100644 --- a/resources/views/accounts/account_gateway.blade.php +++ b/resources/views/accounts/account_gateway.blade.php @@ -186,11 +186,25 @@ @if (!$accountGateway || $accountGateway->gateway_id == GATEWAY_STRIPE)
+ {!! Former::plaintext(' ')->value('' . trans('texts.optional_payment_methods') . '') !!} + {!! Former::checkbox('enable_ach') ->label(trans('texts.ach')) ->text(trans('texts.enable_ach')) ->value(1) !!} + {!! Former::checkbox('enable_sofort') + ->label(trans('texts.sofort')) + ->text(trans('texts.enable_sofort')) + ->value(1) !!} + + + {!! Former::checkbox('enable_apple_pay') ->label(trans('texts.apple_pay')) ->text(trans('texts.enable_apple_pay')) @@ -208,18 +222,6 @@ ->label('verification_file') !!} @endif - {!! Former::checkbox('enable_sofort') - ->label(trans('texts.sofort')) - ->text(trans('texts.enable_sofort')) - ->value(1) !!} - - - {!! Former::checkbox('enable_bitcoin') ->label(trans('texts.bitcoin')) ->text(trans('texts.enable_bitcoin'))