@include('elements.standard-dialog',[ 'dialogName' => 'update-plan', 'title' => __('Update your plan'), 'content' => __('Are you sure you want to cancel your current subscription and create a new one for the new plan?'), 'actionLabel' => __('Yes'), 'actionFunction' => 'checkout.initPayment();', ])
{{-- Paypal and stripe actual buttons --}}
@csrf
@include('elements.icon',['icon'=>'cash-outline','variant'=>'medium','centered'=>false])
{{__('Please enter a valid amount.')}}
{{__('Please complete all billing details')}}
@if($selectedPlan->price)
@endif
{{__('Payment summary')}}
{{__('Subtotal')}}: $0.00
{{__('Taxes')}}:
{{__('Total')}}: $0.00
{{__('Payment method')}}
@if(getSetting('payments.stripe_secret_key') && getSetting('payments.stripe_public_key') && !getSetting('payments.stripe_checkout_disabled'))
@endif @if(getSetting('payments.paypal_client_id') && getSetting('payments.paypal_secret') && !getSetting('payments.paypal_checkout_disabled'))
@endif @if(getSetting('payments.coinbase_api_key') && !getSetting('payments.coinbase_checkout_disabled'))
@endif @if(getSetting('payments.nowpayments_api_key') && !getSetting('payments.nowpayments_checkout_disabled'))
@endif @if(\App\Providers\PaymentsServiceProvider::ccbillCredentialsProvided())
@endif @if(getSetting('payments.paystack_secret_key') && !getSetting('payments.paystack_checkout_disabled'))
@endif
{{__('Please select your payment method')}}

{{__('Note: After clicking on the button, you will be directed to a secure gateway for payment. After completing the payment process, you will be redirected back to the website.')}}