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

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

<% end %>
<%= form.label :name, style: "display: block" %> <%= form.text_field :name %>
<%= form.label :lastname, style: "display: block" %> <%= form.text_field :lastname %>
<%= form.submit %>
<% end %>