@include('templates.lookatme.components.input', [
'label' => trans('message.full_name'),
'type' => 'text',
'name' => 'name',
'text' => trans('message.full_name'),
'icon' => 'fa fa-user',
'classLabel' => 'tw-col-span-3',
'class'=>'tw-col-span-9',
'attributes'=>'v-model="name"',
])
@include('templates.lookatme.components.input', [
'label' => trans('message.phone_number'),
'type' => 'text',
'name' => 'phone_number',
'text' => trans('message.phone_number'),
'icon' => 'icon-phone1',
'classLabel' => 'tw-col-span-3',
'class'=>'tw-col-span-9',
'attributes' => 'v-model="phone_number"',
])
@include('templates.lookatme.components.input', [
'label' => trans('message.note'),
'type' => 'text',
'name' => 'note',
'text' => trans('message.note'),
'icon' => 'fa fa-book-bookmark',
'classLabel' => 'tw-col-span-3',
'class'=>'tw-col-span-9',
'attributes'=>'v-model="note"',
])
@include('templates.lookatme.components.button', [
'type' => 'button',
'text' => 'Done',
'class'=>'tw-w-full tw-py-3 btn-dark tw-col-span-9 tw-col-start-4',
'attributes'=>'@click="saveDeliveryAddress()"',
])