@extends('layouts.app') @section('title', 'Create user | ') @section('content')
{!! Form::open(['route' => ['user/store'] ]) !!}

Employee Details (New Employee)

@if ($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif
(Primary contact number.) @if ($errors->has('phone_number'))

{{ $errors->first('phone_number') }}

@endif
(Alternate contact number.) @if ($errors->has('other_phone_number'))

{{ $errors->first('other_phone_number') }}

@endif
@if ($errors->has('gender'))

{{ $errors->first('gender') }}

@endif
@if ($errors->has('other_email'))

{{ $errors->first('other_email') }}

@endif

Account detail

(E.g. TS00092)
(E.g. john@techsaga.co.in) @if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
(If left blank system will generated the password.)
(User Role: To give a specific access.) @if ($errors->has('user_role'))

{{ $errors->first('user_role') }}

@endif
(Select an user who will be monitor their work. )
@if ($errors->has('department_id'))

{{ $errors->first('department_id') }}

@endif
(Job Profile: Web Devloper, Business Manger etc. ) @if ($errors->has('designation_id'))

{{ $errors->first('designation_id') }}

@endif

Add Address

Optional: You can add it later.

(Street address e.g. D-99, New Rd. )
(e.g. Near school etc. )
(Street address e.g. D-99, New Rd. )
(e.g. Near school etc. )

Note: You can add more detail of user after creating the profile.

{!! Form::close() !!}
@endsection