15 lines
359 B
Plaintext
15 lines
359 B
Plaintext
= form_for [:admin, @customer] do |f|
|
|
= render 'error_messages', :target => @customer
|
|
|
|
.field
|
|
= f.label :email
|
|
= f.text_field :email
|
|
.field
|
|
= f.label :password
|
|
= f.password_field :password
|
|
.field
|
|
= f.label :password_confirmation
|
|
= f.password_field :password_confirmation
|
|
.actions
|
|
= f.submit @submit || update_button_text
|