@include('admin-panel.components.form.input', [ 'type' => 'text', 'label' => 'Client Name', 'name' => 'client_name', 'id' => 'client_name' ])

Administrator

@include('admin-panel.components.form.input', [ 'type' => 'text', 'label' => 'Full Name', 'name' => 'full_name', 'id' => 'full_name' ]) @include('admin-panel.components.form.input', [ 'type' => 'email', 'label' => 'Email', 'name' => 'email', 'id' => 'email' ]) @include('admin-panel.components.form.select', [ 'label' => 'User Group', 'name' => 'user_group', 'id' => 'user_group', 'options' => $groups ]) @include('admin-panel.components.form.input', [ 'type' => 'password', 'label' => 'Password', 'name' => 'user_password', 'id' => 'user_password' ]) @include('admin-panel.components.form.submit', [ 'label' => 'Add Client', 'name' => 'submit', 'id' => 'submit' ])