%= simple_form_for(@crm_customer) do |f| %>
<%= f.error_notification %>
<%= 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 %>
<%= f.button :submit %>
<% end %>