@extends('backend.layout.main') @section('content')
{{trans('file.Add Employee')}}
{{trans('file.The field labels marked with * are required input fields')}}.
{!! Form::open(['route' => 'employees.store', 'method' => 'post', 'files' => true]) !!}
{{trans('file.name')}} *
{{trans('file.Image')}}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
{{trans('file.Department')}} *
@foreach($lims_department_list as $department)
{{$department->name}}
@endforeach
{{trans('file.Email')}} *
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{trans('file.Phone Number')}} *
{{trans('file.Address')}}
{{trans('file.City')}}
{{trans('file.Country')}}
{{trans('file.Staff Id')}}
{{trans('file.Add User')}}
{{trans('file.UserName')}} *
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{trans('file.Password')}} *
{{trans('file.Role')}} *
@foreach($lims_role_list as $role)
{{$role->name}}
@endforeach
{{trans('file.Warehouse')}} *
@foreach($lims_warehouse_list as $warehouse)
{{$warehouse->name}}
@endforeach
{{trans('file.Biller')}} *
@foreach($lims_biller_list as $biller)
{{$biller->name}} ({{$biller->company_name}})
@endforeach
{!! Form::close() !!}
@endsection @push('scripts') @endpush