18 lines
484 B
Plaintext
18 lines
484 B
Plaintext
<%= simple_form_for([:settings,@settings_account]) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :title %>
|
|
<%= f.input :account_type, :collection => Lookup.collection_of("account_type") %>
|
|
<%= f.input :discount %>
|
|
<%= f.input :point %>
|
|
<%= f.input :bonus %>
|
|
<%= f.input :rebate %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.submit "Create Account",:class => 'btn btn-primary btn-lg waves-effect' %>
|
|
</div>
|
|
|
|
<% end %>
|