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

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

<% end %>
<%= form.label :title %> <%= form.text_field :title %>
<%= form.label :text %> <%= form.text_area :text %>
<%= form.submit %>
<% end %>