New Topic
<%= form_for @topic, html: { multipart: true, class: 'square' } do |f| %>
<%= render 'shared/errors', messages: @topic.errors.full_messages %>
<%= f.hidden_field :forum_id %>
<%= f.label :forum %>
<%= @topic.forum %>
<%= f.label :title %>
<%= f.text_field :title, size: 50 %>
<%= f.label :post %>
<%= f.text_area :first_post, rows: 15 %>
<%= f.submit 'Create Topic' %>
<% end %>