@extends('admin.layout') @section('content')

{{ trans('labels.AddCustomer') }}

@php $getUserRoleData = userRoleData(); $Customers = explode(",",$getUserRoleData->Customers); @endphp

{{ trans('labels.AddCustomer') }}


@if(count($customers['message'])>0) @endif @if(count($customers['errorMessage'])>0) @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::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')) !!}
{!! Form::close() !!} @else

Please contact with SuperAdmin

@endif
@endsection