55 lines
1.4 KiB
Twig
55 lines
1.4 KiB
Twig
<div class="flex flex-col gap-4 mb-4">
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_name',
|
|
label: 'Name',
|
|
value: name
|
|
} %}
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_company',
|
|
label: 'Company',
|
|
optional: true,
|
|
value: company
|
|
} %}
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_addressLine1',
|
|
label: 'Address Line 1',
|
|
value: addressLine1
|
|
} %}
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_addressLine2',
|
|
label: 'Address Line 2',
|
|
optional: true,
|
|
value: addressLine2
|
|
} %}
|
|
<div class="flex gap-4">
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_city',
|
|
label: 'City',
|
|
value: city
|
|
} %}
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_state',
|
|
label: 'State',
|
|
value: state
|
|
} %}
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_zip',
|
|
label: 'Zip',
|
|
value: zip
|
|
} %}
|
|
</div>
|
|
{% include 'lib/input.twig' with {
|
|
type: 'text',
|
|
name: action ~ '_phone',
|
|
label: 'Phone',
|
|
value: phone
|
|
} %}
|
|
</div>
|