<%= form_with scope: :article, url: articles_path, local: true 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 %> <%= link_to 'Back', articles_path %>