Adding Custom Fields to Devise Registration - Ruby on Rails 4 & Devise 3 -
hi, have model coach i'm trying add specific fields to. have created migration , added fields registration receive error nomethoderror in devise::registrations#new & undefined method `first_name' thank taking @ this... update: have migrated database here code looks far: registration sign coach <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) |f| %> <%= devise_error_messages! %> <div><%= f.label :first_name %><br /> <%= f.text_field :first_name, autofocus: true %></div> <div><%= f.label :email %><br /> <%= f.email_field :email, autofocus: true %></div> <div><%= f.label :password %><br /> <%= f.password_field :password, autocomplete: "off" %></div> <div><%= f.label :password_confirmation %><br /> <%= f.password_field :password_confirmation, autocomplete: "off&quo