@include('components.input.text', [
'title' => 'Name',
'type' => 'text',
'model' => 'form.name',
])
@include('components.input.text', [
'title' => 'Email',
'type' => 'text',
'model' => 'form.email',
'disabled' => $edit ?? false,
])
@include('components.input.text', [
'title' => 'Password',
'type' => 'password',
'model' => 'form.password',
])
@include('components.input.text', [
'title' => 'Confirm Password',
'type' => 'password',
'model' => 'form.confirmPassword',
])