2016-03-15 03:41:13 +11:00
|
|
|
- content_for :page_title do
|
2016-11-16 09:02:57 +11:00
|
|
|
= t('settings.edit_profile')
|
2016-03-15 03:41:13 +11:00
|
|
|
|
2016-10-19 01:37:15 +11:00
|
|
|
= simple_form_for @account, url: settings_profile_path, html: { method: :put } do |f|
|
|
|
|
= render 'shared/error_messages', object: @account
|
|
|
|
|
2016-12-23 09:03:57 +11: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 13:56:10 +11: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-23 09:03:57 +11:00
|
|
|
|
|
|
|
= f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
|
2016-03-15 03:41:13 +11:00
|
|
|
|
2016-09-25 23:48:20 +10:00
|
|
|
.actions
|
2016-11-16 09:02:57 +11:00
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|