I am integrating my app with Stripe. I understand that when collecting card information I can't save credit card number, CVC, expiry and zip on my server. For collecting these information Stripes suggests to add:
<div id="card-element">
<!-- A Stripe Element will be inserted here. -->
</div>
And then use:
var style = {};
var card = elements.create('card', {style: style});
card.mount('#card-element');
However, for the name on the card I see everywhere people use plane input to collect this information.
Does this mean that I am permitted to save the name on the card on my own database or there is a similar approach (i.e card.mount) to collect the name?
Thanks for your help. Behdad.