# view
Edit news entry
<%= debug(@news)%>
<%= error_messages_for :news %>
<% form_for @news do |f| %>
<%= f.label :title %>
<%= f.text_field :title, :class => "text" %>
<%= f.label :body %>
<%= f.text_area :body, :size => "10x10" %>
<%= f.submit "Update", :class => "submit" %>
<% end %>