<%= form_with model: [ @article, @article.comments.build ] do |form| %>

<%= form.label :commenter %>
<%= form.text_field :commenter %>

<%= form.label :body %>
<%= form.text_area :body %>

<%= form.label :status %>
<%= form.select :status, Visible::VALID_STATUSES, selected: 'public' %>

<%= form.submit %>

<% end %>