19 lines
458 B
Plaintext
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 %>
|