Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

rboug's avatar
Level 1

stripe does not display the bank data entry form

stripe does not display the bank data entry form when I include the script as follows: @extends ( 'layouts.app') @section ('content') // stripe script @endsection

If I remove @extends and @section, stripe work !!!

0 likes
2 replies
rboug's avatar
Level 1

The problem is coming from <div id="app", it not accept using id="app" solved ! i don't knew why but this resolve my problem

Loach's avatar

It is because vue cannot parse the script. You cannot have script tags within the element that vue has control over. They will not be parsed. You need to put the script outside of that space.

Please or to participate in this conversation.