Please check your database if the age field is there.
If you did only run migrate it will NOT be there. You either need to run php artisan migrate:refresh (you will loose all data in the database) or create a new migration to add that field. Migration that have run already are not run again on migrate.
Jul 18, 2016
4
Level 5
Adding Custom Registration Fields
I followed spark documentation - COOKBOOK - "Adding Registration Fields"
I also added age column in the database migration, then run php artisan migrate
After that, when I try to register new user. I receive an error "Something went wrong. Please try again or contact customer support." In the console, I get a 500 error.
How will I fix this?
Please or to participate in this conversation.