{{ trans('labels.AddCustomer') }}
@if(count($customers['message'])>0)
{{ $customers['message'] }}
@endif
@if(count($customers['errorMessage'])>0)
{{ $customers['errorMessage'] }}
@endif
@if(in_array("Add",$Customers ))
{!! Form::open(array('url' =>'admin/add-new-customers', 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addNewCustomers', 'enctype'=>'multipart/form-data')) !!}
{!! Form::close() !!}
@else
{!! Form::text('customers_firstname', '', array('class'=>'form-control', 'id'=>'customers_firstname', 'required'=>'required')) !!}
{!! Form::text('customers_lastname', '', array('class'=>'form-control', 'id'=>'customers_lastname', 'required'=>'required')) !!}
{!! Form::file('newImage', array('id'=>'newImage')) !!}
{!! Form::text('customers_dob', '', array('class'=>'form-control datepicker' , 'id'=>'customers_dob', 'required'=>'required')) !!}
{!! Form::text('customers_telephone', '', array('class'=>'form-control', 'id'=>'customers_telephone', 'required'=>'required')) !!}
{!! Form::text('alternate_mobile', '', array('class'=>'form-control', 'id'=>'alternate_mobile')) !!}
{!! Form::text('customers_fax', '', array('class'=>'form-control', 'id'=>'customers_fax')) !!}
{!! Form::text('customers_email_address', '', array('class'=>'form-control', 'id'=>'customers_email_address', 'required'=>'required')) !!}
Please contact with SuperAdmin
@endif