devstevehowe9 years agoLevel 3ReplyReport SpamWe needed to add shipping information, what you do is add the required field to your blade, and then in SparkServiceProvider in the boot() function add Spark::createUserWith(function ($request) { $user = Spark::user(); $data->request->all(); $user->forceFill([ 'phone' => $data['phone'] ])->save(); return $user; }); Like Reply
Cronix9 years agoLevel 67ReplyReport SpamSee this for collecting the billing address (which includes phone #) https://spark.laravel.com/docs/4.0/billing#collecting-billing-addresses Like Reply