Section Edit

Edit Section

<%= link_to "Back to List", admin_pages_path, :class => "btn btn-default create-new hvr-box-shadow-outset" %>
<%= form_for(@page_element, :url => "/admin/update-page-section/#{@page.id}/#{@page_element.id}", :html => { :method => "put", :multipart => true, :class => "form-horizontal" }) do |f| %> <% if @page_element.errors.any? %>
    <% @page_element.errors.full_messages.each do |message| %>
  • <%= message %>
  • <% end %>
<% end %>
<%= f.text_field :name, :class => "form-control", :placeholder => "" %>
<%= f.text_area :content, :class => "form-control", :id => "PostContent" %>
<% end %>