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

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

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

<%= form.submit %>

<% end %> <% else %> <%= link_to "Sign up", signup_path %> or <%= link_to "Log in", login_path %> <% end %>