2021-12-19 04:13:05 +01:00
|
|
|
= simple_form_for @user do |f|
|
|
|
|
= f.input :email, required: true
|
|
|
|
= f.input :password, required: true
|
|
|
|
= f.input :password_confirmation, required: true
|
2021-12-19 10:48:54 +01:00
|
|
|
= f.input :admin, required: true
|
2021-12-19 04:13:05 +01:00
|
|
|
|
|
|
|
.form-actions
|
|
|
|
= f.submit class: 'btn'
|
|
|
|
|
|
|
|
= link_to 'Zurück', users_path
|