2016-03-14 18:41:13 +02:00
|
|
|
- content_for :page_title do
|
2016-11-16 00:02:57 +02:00
|
|
|
= t('settings.edit_profile')
|
2016-03-14 18:41:13 +02:00
|
|
|
|
2016-10-18 17:37:15 +03:00
|
|
|
= simple_form_for @account, url: settings_profile_path, html: { method: :put } do |f|
|
|
|
|
= render 'shared/error_messages', object: @account
|
|
|
|
|
2016-11-16 00:02:57 +02:00
|
|
|
= f.input :display_name, placeholder: t('simple_form.labels.defaults.display_name')
|
|
|
|
= f.input :note, placeholder: t('simple_form.labels.defaults.note')
|
2016-10-18 17:37:15 +03:00
|
|
|
= f.input :avatar, wrapper: :with_label
|
|
|
|
= f.input :header, wrapper: :with_label
|
2016-03-14 18:41:13 +02:00
|
|
|
|
2016-09-25 16:48:20 +03:00
|
|
|
.actions
|
2016-11-16 00:02:57 +02:00
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|
2016-10-14 03:28:49 +03:00
|
|
|
|
|
|
|
.form-footer= render "settings/shared/links"
|