<%= form_with(model: comment, local: true) do |form| %> <% if comment.errors.any? %>

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

<% end %>
<%= form.label :banal_brainstorm %> <%= form.text_field :banal_brainstorm %>
<%= form.label :comment_text %> <%= form.text_area :comment_text %>
<%= form.label :parent_id %> <%= form.number_field :parent_id %>
<%= form.submit %>
<% end %>