Editing person

<% form_for(@person) do |f| %> <%= f.error_messages %>

<%= f.label :name %>
<%= f.text_field :name %>

<%= f.submit "Update" %>

<% end %> <%= link_to 'Show', @person %> | <%= link_to 'Back', people_path %>