<%= form_with(model: [task, comment], local: false, class: "comment-form") do |f| %>
<%= f.text_area :content, placeholder: "Add a comment...", class: "comment-textarea", required: true %>
<%= f.submit "Post Comment", class: "submit-btn" %>
<% end %>