{{ trans('theme.payment_options') }}

@php $config_shop = vendor_get_paid_directly() ? $shop : null; @endphp @foreach ($paymentMethods as $paymentMethod) @php $config = get_payment_config_info($paymentMethod->code, $config_shop); @endphp {{-- Skip the payment option if not confirured --}} @continue(!$config || !is_array($config) || !$config['config']) @if ($customer && $paymentMethod->code == 'stripe' && $customer->hasBillingToken())
@endif
@endforeach
{{-- authorize-net --}} @include('partials.authorizenet_card_form') {{-- Stripe --}} @include('partials.strip_card_form') {{-- Razorpay --}} @if (is_incevio_package_loaded('razorpay')) @endif {{-- JRF Pay --}} @if (is_incevio_package_loaded('jrfpay')) @include('jrfpay::jrfpay_payment_form') @endif

@lang('theme.placeholder.select_payment_option')