You must transfer your form to the view and make changes there.
app / admin / studio.rb
form do |f|
render partial: 'form'
end
app / views / admin / studio / _form.html.erb
<%= form(:html => { :multipart => true}) do |f| %>
<div class="progress">...</div>
<%= f.inputs "Studio" do %>
<%= f.input :name %>
<%= f.input :position %>
<%= f.input :description %>
<%= f.input :image, :label => "Image - (must be 335x221px)" %>
<%= f.input :gallery_image, :label => "Image - (must be 600x400px)" %>
<% end %>
<%= f.actions %>
<% end %>
source
share