I am trying to add an Avatar Upload field to my Profile Page, but as soon as I add the :html => {:multipart => true} to it, it spits out an syntax error.<
:html => {:multipart => true}
I'm assuming that you're either using 'paperclip' or ''carrierwave' to upload images. So, try this:
<%= form_for @user, : url => users_path, :html => {:multipart => true} do |f| %>