<%= simple_form_for([:settings,@employee]) do |f| %>
<%= f.error_notification %>
<%= f.input :name %>
<%= f.input :role, :collection => Lookup.collection_of("employee_roles"),:class=>'form-group' %>
<%= f.input :emp_id, :as => :integer, :label => "Employee Numberic ID (*Unique)" %>
<%= f.input :password %>
<%= f.submit "Submit",:class => 'btn btn-primary btn-lg waves-effect' %>
<% end %>