<%= simple_form_for(@role, :html=>{:id=>"frm_create_role"}, :url=>@url_path) do |f| %>
<%= f.label :name, :label=>"Name" %> <%= f.input :name, input_html: { class: 'form-control'} , label: false %>
<%= f.label :is_active, :label=>"Status" %> <%= f.input :is_active, :collection => [['Active', true],['In-Active', false]], label:false, :include_blank=>'-Select-' %>
<%= f.submit :Save %>
<% end %>