13 lines
298 B
Plaintext

= simple_form_for(@profile) do |f|
= f.error_notification
.form-inputs
= f.hidden_field :user_id
= f.input :name
= f.label :summary
= f.input :summary, as: :string, label: false, input_html: { style: "width: 100%;"}
= f.input :about
.form-actions
= f.button :submit