@extends('layouts.theme') @section('title','Pay '.session()->get('currenct_currency') . $amount) @section('main-wrapper')
{{ __('ADD') }}   {{ $amount }} {{ __('via') }}

@if($wallet_settings->paytm_enable == 1)
{{ __("Pay with PAYTM") }}

{{ __("Netbanking, Debit / Credit Card, Paytm wallet, UPI available") }}

@csrf
@endif
@if($wallet_settings->paypal_enable == 1)
{{ __("Pay with Payapl") }}

{{ __("Netbanking, Debit / Credit Card, Paytm wallet") }}

@csrf
@endif
@if($wallet_settings->stripe_enable == 1)
{{ __("Pay with STRIPE") }}

@csrf
@if ($errors->has('number')) {{ $errors->first('number') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('expiry')) {{ $errors->first('expiry') }} @endif
@if ($errors->has('cvc')) {{ $errors->first('cvc') }} @endif
@endif
@endsection @section('custom-script') @endsection