Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

Update button doesn't work

I am on the adding avatar section, using rails 4. I successfully added the upload image field. However the "update" button for user/edit doesn't work, but the cancel account button does.Any idea what this could be? model:class User < ActiveRecord::Base # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable

has_many :logs

has_many :reviews

has_attached_file :avatar

validates :name, :presence => true end code snippet I have in my views: <div class="form-group"> <%= f.submit "Update", class: "btn btn-primary" %> </div> <% end %>