%= form_for(@kidung) do |f| %>
<% if @kidung.errors.any? %>
<%= pluralize(@kidung.errors.count, "error") %> prohibited this kidung from being saved:
<% @kidung.errors.full_messages.each do |message| %>
- <%= message %>
<% end %>
<% end %>
<%= f.label :tipe %>
<%= f.select(:tipe, [["Kidung", "k"], ["Suplemen", "s"]]) %>
<%= f.label :number %>
<%= f.text_field :number %>
<%= f.label :content %>
<%= f.text_area :content, class: "form-control" %>
<%= f.label :history %>
<%= f.bootsy_area :history, class: "form-control", rows: 12 %>
<%= f.submit %>
<% end %>