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