Files
sx-fc/app/views/crm/customers/_form.html.erb
Min Zeya Phyo 0af7d78c3c scaffold models
2017-04-20 17:01:14 +06:30

19 lines
458 B
Plaintext

<%= simple_form_for(@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.association :membership %>
<%= f.input :membership_type %>
<%= f.input :membership_authentication_code %>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>