<div class="field">
<%= f.label :name %><br>
<%= f.text_area :name %>
</div>
<div class="field">
<%= f.label :content %><br>
<%= f.text_area :content, :cols =>20, :rows => 20 %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<%= f.text_area :name %> line is causing the error. When I remove it, it works fine.
Above lines are for when creating a new status...when I click on the "new status" button, error shows up. please help. Thank you!