24 lines
545 B
Plaintext
24 lines
545 B
Plaintext
= simple_form_for @member do |f|
|
|
= f.error_notification
|
|
|
|
.grid.grid-cols-2.m-20.gap-10
|
|
.field
|
|
= f.label :name
|
|
= f.text_field :name
|
|
.field
|
|
= f.label :public
|
|
= f.check_box :public
|
|
.field
|
|
= f.label :picture
|
|
= f.file_field :picture
|
|
-if @member.picture
|
|
%div.overflow-hidden
|
|
.my-5 Currently
|
|
= image_tag @member.picture, class: "object-contain h-40"
|
|
|
|
.field
|
|
= f.label :Bio
|
|
= f.rich_text_area :bio
|
|
.flex.justify-center.actions
|
|
= f.submit 'Save'
|