<%= simple_form_for @user, method: :post, url: crop_image_user_path(@user), html: {remote: true, multipart: true, class: 'form-horizontal crop_image' } do |f| %>
<%= f.fields_for :profile_image do |p| %> <%= p.input :crop_circle_x, as: :hidden, :input_html => { class: :crop_circle_x } %> <%= p.input :crop_circle_y, as: :hidden, :input_html => { class: :crop_circle_y } %> <%= p.input :crop_circle_r, as: :hidden, :input_html => { class: :crop_circle_r } %> <% end %> <%= f.submit 'Crop & Save', :class => [:btn, 'btn-primary'] %>
<% end %>