Business information on Sign Up
Hi Guys,
I have a question regarding sign up with Wave. Is it possible for me to capture a users business information such as Business name, Location and contact details when a user signs up? Bit of a basic question but don't want to reinvent the wheel here if it has already been covered.
Hey Brian!
I don't think that this is available out of the box, but what you could do is modify the register blade view and controller:
- Blade view:
register.blade.php
- Controller:
RegisterController.php
You can add the extra fields in there.
An alternative option is to add a middleware that would redirect the users to the settings page after authentication asking them to fill up some of the required settings. That way you will not request the information during sign-up but after that. The middleware could check if those fields that you are after are empty and if so redirect the users to their settings page, else skip the redirect.
Hope that this helps!
Best,
Bobby