I am new to devise but got it up and working, I was able to alter my migrate file so that the devise user model has a username field, how do I add a field to the devise sign_up page? Where is this located? I have read that I need to over ride a controller?
Any advice or nudge in the right directions would be awesome
Look at mackenzie child YouTube channel the 12 week rails app challenge he adds a username to the devise sign up page good luck
You’ll want to [configure the views](https://github.com/plataformatec/devise#configuring-views).
Solved
You need to add devise:views and then create a registrations controller to handle the new form and then in routes point to this controller to use