@extends('layouts.master') @section('title','Add New User') @section('css') @stop @section('content')

Add New User

User List
@include('partials._alert_message')
@csrf
@include('includes.input-label.input-field', ['name' => 'name', 'title' => "User Name", 'is_required' => 1]) @include('includes.input-label.chosen-select', ['name' => 'company_id', 'title' => "Company", 'required' => 1, 'items' => $companies]) @include('includes.input-label.input-field', ['name' => 'email', 'title' => "Email", 'is_required' => 1, 'type' => 'email']) @include('includes.input-label.input-field', ['name' => 'password', 'title' => "Password", 'is_required' => 1, 'type' => 'password']) @include('includes.input-label.input-field', ['name' => 'confirm_password', 'title' => "Confirm Password", 'is_required' => 1, 'type' => 'password'])
@endsection @section('js') {{-- select Box Search--}} @stop