#Namrata

1 messages · Page 1 of 1 (latest)

fresh coral
#

Hi there, how can I help?

pseudo oasis
#

Hii in my laravel application i am using payment Intent API i would like to pass custom form field for card details

#

dont want to use card-element default div

fresh coral
#

OK, so what integration are you using? PaymentElement?

pseudo oasis
#

i am using payment intent

#

with laravel

fresh coral
#

PaymentIntent API is for backend.

How about front-end integration? Stripe provides PaymentElement and CardElement for collecting card details. You said you don't want to use CardElement, so are you using PaymentElement?

pseudo oasis
#

stripe.confirmCardPayment($("#clientSecreat").val(), {
payment_method: {
card: card,
billing_details: {

          }
        },
        setup_future_usage: 'off_session'
      })
#

number: $('.card-number').val(),
cvc: $('.card-cvc').val(),
exp_month: $('.card-expiry-month').val(),
exp_year: $('.card-expiry-year').val()

#

i want to pass like this

fresh coral
#

Hmm, are you trying to collect the card number directly from your own UI control?

pseudo oasis
#

yes

fresh coral
#

W can only help simplify PCI compliance if you’ve integrated with Checkout, Elements, or our mobile SDKs.

pseudo oasis
#

let me check it

#

one more help

fresh coral
#

Sure, how can I help?

pseudo oasis
#

i want to use default checkout page of stripe in my application

fresh coral
#

OK. for that you can use the Checkout Session API.

pseudo oasis
#

i dont want to redirect from website to checkout page i want used design only

fresh coral
#

You want to build a checkout page by yourself with PaymentElement?

pseudo oasis
#

yes

fresh coral
#

OK. Although I'd suggest you to use Checkout. But it's really up to you to decide what integration you want to build for your application.

pseudo oasis
#

I am having single page application where all html table is parsent if i redirect to checkout page of stripe then while coming back in my application i lost my table

#

html table