@include('templates.lookatme.components.input', [
'label' => 'Name',
'type' => 'text',
'name' => 'name',
'value' => $customer_info->name,
'text' => trans('message.name'),
'icon' => 'fa fa-user',
'classLabel' => 'tw-col-span-3',
'class'=>'tw-col-span-9'
])
@include('templates.lookatme.components.input', [
'label' => 'Email',
'type' => 'email',
'name' => 'email',
'value' => $customer_info->email,
'id' => 'email',
'text' =>trans('message.email_address'),
'icon' => 'fa fa-thin fa-envelope',
'classLabel' => 'tw-col-span-3',
'class'=>'tw-col-span-9'
])
@include('templates.lookatme.components.button', [
'type' => 'submit',
'text' => 'Update',
'class'=>'tw-w-full tw-py-3 btn-dark tw-col-span-9 tw-col-start-4 tw-mt-4'
])