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

oscar_g__'s avatar

Why is a user invited to my team asked to provide new team details + credit card info upon signup?

Hello, I have a spark app with team billing per member. The owner of the team sends out invitations to users to join their team. However, upon clicking the invitation link, my spark app asks the new user to provide information for a new team and to enter a credit card.

Shouldn't the invited user simply have to input their name, email, and password since the billing is handled by the inviting account?

It may be an issue with my SparkServiceProvider.php file. Here is how the plan is currently set up:

Spark::noAdditionalTeams();
    
Spark::useStripe()->teamTrialDays(10);

Spark::chargeTeamsPerMember();

Spark::teamPlan('Monthly', 'plan_DhcP2k6OCbVqnt')
    ->price(10)
    ->features([
        'First', 'Second', 'Third'
    ]);

What do I need to do for invited users to not have to enter team + credit card information?

0 likes
0 replies

Please or to participate in this conversation.