%= form_with scope: :article, url: articles_path, local: true do |form| %> <% if @article.errors.any? %>
<%= form.label :title %>
<%= form.text_field :title %>
<%= form.label :text %>
<%= form.text_area :text %>
<%= form.submit %>
<% end %> <%= link_to 'Back', articles_path %>