about summary refs log tree commit diff
path: root/app/views/settings/profiles/show.html.haml
blob: df0cc3227e24e5b0aef1d380bb58dcdc271c432b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- content_for :page_title do
  Edit profile

= simple_form_for @account, url: settings_profile_path, html: { method: :put } do |f|
  = render 'shared/error_messages', object: @account

  = f.input :display_name, placeholder: 'Display name'
  = f.input :note, placeholder: 'Bio'
  = f.input :avatar, wrapper: :with_label
  = f.input :header, wrapper: :with_label

  .actions
    = f.button :button, 'Save changes', type: :submit

.form-footer= render "settings/shared/links"