CUSTOMER INFORMATION

{!! Form::label('company','Company:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('company', null, ['class'=>'form-control','placeholder'=>'Company', 'v-model'=>'customer.company','autocomplete'=>'autocomplete_off_hack_xfr4!k']) !!} @if ($errors->has('company')) {{ $errors->first('company') }} @endif
{!! Form::label('first_name','First Name:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('first_name', null, ['class'=>'form-control','placeholder'=>'First name', 'v-model'=>'customer.first_name', 'autocomplete'=>'autocomplete_off_hack_xfr4!k']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name','Last Name:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('last_name', null, ['class'=>'form-control','placeholder'=>'Last name', 'v-model'=>'customer.last_name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('phone','Phone Number:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('phone', null, ['class'=>'form-control','placeholder'=>'Phone Number', 'v-model'=>'customer.phone']) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{!! Form::label('email','Email Address:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::email('email', null, ['class'=>'form-control','placeholder'=>'Email Address', 'v-model'=>'customer.email']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif