RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: pak11273
Site: http://shamgarsolutions.com
elsif @user.update_attributes(params[:user])
elsif @user.update_attributes(params.permit![:user])
Change:
elsif @user.update_attributes(params[:user])
to:
elsif @user.update_attributes(params.permit![:user])