@extends('backend.layout.main') @section('content') {{__('db.Add User')}} {{__('db.The field labels marked with * are required input fields')}}. {!! Form::open(['route' => 'user.store', 'method' => 'post', 'files' => true]) !!} {{__('db.UserName')}} * @if($errors->has('name')) {{ $errors->first('name') }} @endif {{__('db.Password')}} * {{__('db.Generate')}} @if($errors->has('password')) {{ $errors->first('password') }} @endif {{__('db.Email')}} * @if($errors->has('email')) {{ $errors->first('email') }} @endif {{__('db.Phone Number')}} * @if($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif {{__('db.Address')}} * {{__('db.State')}} {{__('db.Country')}} {{__('db.Active')}} @if(in_array('restaurant',explode(',',$general_setting->modules))) {{__('db.Waiter')}} @endif {{__('db.Company Name')}} {{__('db.Role')}} * @foreach($lims_role_list as $role) {{$role->name}} @endforeach {{__('db.Customer Group')}} * @foreach($lims_customer_group_list as $customer_group) {{$customer_group->name}} @endforeach {{__('db.name')}} * {{__('db.Tax Number')}} {{__('db.City')}} * {{__('db.Postal Code')}} {{__('db.Biller')}} * @foreach($lims_biller_list as $biller) {{$biller->name}} @endforeach {{__('db.Warehouse')}} * @foreach($lims_warehouse_list as $warehouse) {{$warehouse->name}} @endforeach {!! Form::close() !!} @endsection @push('scripts') @endpush
{{__('db.The field labels marked with * are required input fields')}}.