dbfdg
{{Form::model($customer,array('route' => array('customer.update', $customer->id), 'method' => 'PUT')) }}
{{__('Basic Info')}}
{{Form::label('name',__('Name'),array('class'=>'form-label')) }}
{{Form::text('name',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('contact',__('Contact'),['class'=>'form-label'])}}
{{Form::number('contact',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('email',__('Email'),['class'=>'form-label'])}}
{{Form::text('email',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('tax_number',__('Tax Number'),['class'=>'form-label'])}}
{{Form::text('tax_number',null,array('class'=>'form-control'))}}
@if(!$customFields->isEmpty())
@include('customFields.formBuilder')
@endif
{{__('Billing Address')}}
{{Form::label('billing_name',__('Name'),array('class'=>'','class'=>'form-label')) }}
{{Form::text('billing_name',null,array('class'=>'form-control'))}}
{{Form::label('billing_phone',__('Phone'),array('class'=>'form-label')) }}
{{Form::text('billing_phone',null,array('class'=>'form-control'))}}
{{Form::label('billing_address',__('Address'),array('class'=>'form-label')) }}
{{Form::textarea('billing_address',null,array('class'=>'form-control','rows'=>3))}}
{{Form::label('billing_city',__('City'),array('class'=>'form-label')) }}
{{Form::text('billing_city',null,array('class'=>'form-control'))}}
{{Form::label('billing_state',__('State'),array('class'=>'form-label')) }}
{{Form::text('billing_state',null,array('class'=>'form-control'))}}
{{Form::label('billing_country',__('Country'),array('class'=>'form-label')) }}
{{Form::text('billing_country',null,array('class'=>'form-control'))}}
{{Form::label('billing_zip',__('Zip Code'),array('class'=>'form-label')) }}
{{Form::text('billing_zip',null,array('class'=>'form-control'))}}
@if(App\Models\Utility::getValByName('shipping_display')=='on')
{{__('Shipping Address')}}
{{Form::label('shipping_name',__('Name'),array('class'=>'form-label')) }}
{{Form::text('shipping_name',null,array('class'=>'form-control'))}}
{{Form::label('shipping_phone',__('Phone'),array('class'=>'form-label')) }}
{{Form::text('shipping_phone',null,array('class'=>'form-control'))}}
{{Form::label('shipping_city',__('City'),array('class'=>'form-label')) }}
{{Form::text('shipping_city',null,array('class'=>'form-control'))}}
{{Form::label('shipping_state',__('State'),array('class'=>'form-label')) }}
{{Form::text('shipping_state',null,array('class'=>'form-control'))}}
{{Form::label('shipping_country',__('Country'),array('class'=>'form-label')) }}
{{Form::text('shipping_country',null,array('class'=>'form-control'))}}
{{Form::label('shipping_zip',__('Zip Code'),array('class'=>'form-label')) }}
{{Form::text('shipping_zip',null,array('class'=>'form-control'))}}
@endif
{{Form::close()}}