<%= simple_form_for(@report, :html=>{:id=>"frm_create_widget",:class=> "form-horizontal form-label-left"}, :url=>@url_path) do |f| %>

Create Report <%= f.submit :Save , class: 'btn btn-success btn-sm pull-right btndashboard'%>

<%= f.input :title, input_html: { class: 'form-control col-md-7 col-xs-12'} , label: false %>
<%= f.input :link, input_html: { class: 'form-control col-md-7 col-xs-12'} , label: false %>
<%= f.input :tool, :collection=>[['Service Now','service_now'],['Opsramp','opsramp'],['Snow','snow']],input_html: { class: 'form-control col-md-7 col-xs-12'} , label: false, :include_blank => 'Select' %>
<%= f.input :report_type, :collection=>[['Daily','daily'],['Weekly','weekly'],['Monthly','monthly']],input_html: { class: 'form-control col-md-7 col-xs-12'} , label: false, :include_blank => 'Select' %>
<%= f.input :customer_id, :collection => Customer.all.map{|c| [c.name,c.id]}, label:false, input_html: { class:'form-control'},include_blank: 'Select' %>
<% end %>