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