Category Create

Create Category

<%= link_to "Back to List", admin_categories_path, :class => "btn btn-default create-new hvr-box-shadow-outset" %>
<%= form_for(@category, :url => admin_categories_path, :html => { :method => "post", :multipart => true, :class => "form-horizontal" }) do |f| %> <% if @category.errors.any? %>
    <% @category.errors.full_messages.each do |message| %>
  • <%= message %>
  • <% end %>
<% end %>
<%= f.text_field :name, :class => "form-control", :placeholder => "Name" %>
<%= f.text_field :url, :class => "form-control", :placeholder => "URL" %>
<% end %>