SHIPPING INFORMATION

{!! Form::label('ship_to','To:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('ship_to', null, ['class'=>'form-control','placeholder'=>'Enter name', 'v-model'=>'customer.ship_to']) !!} @if ($errors->has('ship_to')) {{ $errors->first('ship_to') }} @endif
{!! Form::label('ship_address','Address :', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('ship_address', null, ['class'=>'form-control','placeholder'=>'Shipping Address', 'v-model'=>'customer.ship_address']) !!} @if ($errors->has('ship_address')) {{ $errors->first('ship_address') }} @endif
{!! Form::label('ship_city','City:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('ship_city', null, ['class'=>'form-control','placeholder'=>'Shipping City', 'v-model'=>'customer.ship_city']) !!} @if ($errors->has('ship_city')) {{ $errors->first('ship_city') }} @endif
{!! Form::label('ship_state','State:', ['class'=>'control-label col-sm-2']) !!}
@if ($errors->has('ship_state')) {{ $errors->first('ship_state') }} @endif
{!! Form::label('ship_zip','Zip Code:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::number('ship_zip', null, ['class'=>'form-control','placeholder'=>'Shipping Zip Code Address', 'v-model'=>'customer.ship_zip']) !!} @if ($errors->has('ship_zip')) {{ $errors->first('ship_zip') }} @endif