You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
474 B

  1. - content_for :page_title do
  2. Edit profile
  3. = simple_form_for @account, url: settings_profile_path, html: { method: :put } do |f|
  4. = render 'shared/error_messages', object: @account
  5. = f.input :display_name, placeholder: 'Display name'
  6. = f.input :note, placeholder: 'Bio'
  7. = f.input :avatar, wrapper: :with_label
  8. = f.input :header, wrapper: :with_label
  9. .actions
  10. = f.button :button, 'Save changes', type: :submit
  11. .form-footer= render "settings/shared/links"