<%= form_with(model: grabado) do |form| %> <% if grabado.errors.any? %>

<%= pluralize(grabado.errors.count, "error") %> prohibited this grabado from being saved:

<% end %>
<%= form.label :name, style: "display: block" %> <%= form.text_field :name %>
<%= form.label :style_es, style: "display: block" %> <%= form.text_field :style_es %>
<%= form.label :style_en, style: "display: block" %> <%= form.text_field :style_en %>
<%= form.label :paperw, style: "display: block" %> <%= form.text_field :paperw %>
<%= form.label :paperh, style: "display: block" %> <%= form.text_field :paperh %>
<%= form.label :platew, style: "display: block" %> <%= form.text_field :platew %>
<%= form.label :plateh, style: "display: block" %> <%= form.text_field :plateh %>
<%= form.label :year, style: "display: block" %> <%= form.number_field :year %>
<%= form.label :state, style: "display: block" %> <%= form.text_field :state %>
<%= form.label :image, style: "display: block" %> <%= form.text_field :image %>
<%= form.label :artist_id, style: "display: block" %> <%= form.text_field :artist_id %>
<%= form.label :collection_id, style: "display: block" %> <%= form.text_field :collection_id %>
<%= form.submit %>
<% end %>