Files
sx-fc/app/views/crm/customers/_form.html.erb
2017-06-06 09:18:01 +06:30

20 lines
434 B
Plaintext

<%= simple_form_for([:crm,@crm_customer]) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :name %>
<%= f.input :company %>
<%= f.input :contact_no %>
<%= f.input :email %>
<%= f.input :date_of_birth %>
<%= f.input :membership_type %>
<%= f.input :membership_authentication_code %>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>