mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-23 17:24:38 +01:00
98 lines
2.9 KiB
YAML
98 lines
2.9 KiB
YAML
rows1:
|
|
type: rows
|
|
fields:
|
|
row1:
|
|
type: row
|
|
fields:
|
|
column1:
|
|
type: column
|
|
width: 1-3
|
|
label: '{{user.fullname}}'
|
|
column2:
|
|
type: column
|
|
width: 2-3
|
|
fields:
|
|
fullname:
|
|
type: text
|
|
|
|
row2:
|
|
type: row
|
|
fields:
|
|
column1:
|
|
type: column
|
|
width: 1-3
|
|
label: '{{user.email}}'
|
|
column2:
|
|
type: column
|
|
width: 2-3
|
|
fields:
|
|
email:
|
|
type: email
|
|
|
|
row3:
|
|
type: row
|
|
fields:
|
|
column1:
|
|
type: column
|
|
width: 1-3
|
|
label: '{{user.password}}'
|
|
column2:
|
|
type: column
|
|
width: 2-3
|
|
fields:
|
|
password:
|
|
type: password
|
|
placeholder: '{{user.password.type-new-password}}'
|
|
disabled: true
|
|
pattern: '^.{8,}$'
|
|
autocomplete: new-password
|
|
|
|
row4:
|
|
type: row
|
|
fields:
|
|
column1:
|
|
type: column
|
|
width: 1-3
|
|
label: '{{user.language}}'
|
|
column2:
|
|
type: column
|
|
width: 2-3
|
|
fields:
|
|
language:
|
|
type: select
|
|
translate: false
|
|
import:
|
|
options: 'Formwork\Admin\Language::availableLanguages'
|
|
|
|
row5:
|
|
type: row
|
|
fields:
|
|
column1:
|
|
type: column
|
|
width: 1-3
|
|
label: '{{user.role}}'
|
|
column2:
|
|
type: column
|
|
width: 2-3
|
|
fields:
|
|
role:
|
|
type: select
|
|
disabled: true
|
|
import:
|
|
options: 'Formwork\Admin\Users\Users::availableRoles'
|
|
|
|
row6:
|
|
type: row
|
|
fields:
|
|
column1:
|
|
type: column
|
|
width: 1-3
|
|
label: '{{user.avatar}}'
|
|
column2:
|
|
type: column
|
|
width: 2-3
|
|
fields:
|
|
avatar:
|
|
type: file
|
|
accept: .jpg, .jpeg, .png, .gif
|