Topic Create

Create Topic

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