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-12-22 22:03:57 +00:00
|
|
|
.fields-group
|
|
|
|
= f.input :display_name, placeholder: t('simple_form.labels.defaults.display_name')
|
|
|
|
= f.input :note, placeholder: t('simple_form.labels.defaults.note')
|
2017-01-28 02:56:10 +00:00
|
|
|
= f.input :avatar, wrapper: :with_label, hint: t('simple_form.hints.defaults.avatar')
|
|
|
|
= f.input :header, wrapper: :with_label, hint: t('simple_form.hints.defaults.header')
|
2016-12-22 22:03:57 +00:00
|
|
|
|
|
|
|
= f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
|
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
|