@extends('layouts.app') @section('title','Checkout') @section('content')
{!! Form::open(['method'=>'POST','action' => 'CheckoutController@customerInfoNext']) !!}
@include('partials.cartItems') @if(Session::has('destination')) @if(Session::get('destination') == 'wholesale')
Label
@if(Session::has('label') && Session::get('label.label_type_id') == 2) @elseif(Session::has('label') && Session::get('label.label_type_id') == 1) @elseif(Session::has('label') && Session::get('label.label_type_id') == 3)
Label: Existing Label
@endif
@if(Session::has('label')) Edit Label @else
Set Up a Label first
@endif
@endif @endif
Customer Information
{!! Form::label('first_name','First Name:') !!} {!! Form::text('first_name', $customer['first_name'], ['class'=>'form-control','placeholder'=>'First name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name','Last Name:') !!} {!! Form::text('last_name', $customer['last_name'], ['class'=>'form-control','placeholder'=>'Last name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('company','Company:') !!} {!! Form::text('company', $customer['company'], ['class'=>'form-control','placeholder'=>'Company']) !!}
{!! Form::label('phone','Phone Number:') !!} {!! Form::text('phone', $customer['phone'], ['class'=>'form-control','placeholder'=>'Phone Number']) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{!! Form::label('email','Email Address:') !!} {!! Form::email('email', $customer['email'], ['class'=>'form-control','placeholder'=>'Email Address']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
Shipping Information
{!! Form::label('ship_to','To:') !!} {!! Form::text('ship_to', $customer['name'], ['class'=>'form-control','placeholder'=>'Enter name']) !!} @if ($errors->has('ship_to')) {{ $errors->first('ship_to') }} @endif
{!! Form::label('ship_address','Address :') !!} {!! Form::text('ship_address', $customer['address'], ['class'=>'form-control','placeholder'=>'Shipping Address']) !!} @if ($errors->has('ship_address')) {{ $errors->first('ship_address') }} @endif
{!! Form::label('ship_city','City:') !!} {!! Form::text('ship_city', $customer['city'], ['class'=>'form-control','placeholder'=>'Shipping City']) !!} @if ($errors->has('ship_city')) {{ $errors->first('ship_city') }} @endif
{!! Form::label('ship_state','State:') !!} {!! Form::select('ship_state', $states, $customer['state_id'],['class'=>'form-control', 'placeholder'=>'Select State']) !!} @if ($errors->has('ship_state')) {{ $errors->first('ship_state') }} @endif
{!! Form::label('ship_zip','Zip Code:') !!} {!! Form::number('ship_zip', $customer['zip'], ['class'=>'form-control','placeholder'=>'Shipping Zip Code']) !!} @if ($errors->has('ship_zip')) {{ $errors->first('zip') }} @endif
Billing Information
{!! Form::label('bill_to','To:') !!} {!! Form::text('bill_to', $customer['name'], ['class'=>'form-control','placeholder'=>'Enter name']) !!} @if ($errors->has('bill_to')) {{ $errors->first('bill_to') }} @endif
{!! Form::label('bill_address','Address :') !!} {!! Form::text('bill_address', $customer['address'], ['class'=>'form-control','placeholder'=>'Billing Address']) !!} @if ($errors->has('bill_address')) {{ $errors->first('address') }} @endif
{!! Form::label('bill_city','City:') !!} {!! Form::text('bill_city', $customer['city'], ['class'=>'form-control','placeholder'=>'Billing City']) !!} @if ($errors->has('bill_city')) {{ $errors->first('bill_city') }} @endif
{!! Form::label('bill_state','State:') !!} {!! Form::select('bill_state', $states, $customer['state_id'],['class'=>'form-control', 'placeholder'=>'Select State']) !!} @if ($errors->has('bill_state')) {{ $errors->first('bill_state') }} @endif
{!! Form::label('bill_zip','Zip Code:') !!} {!! Form::number('bill_zip', $customer['zip'], ['class'=>'form-control','placeholder'=>'Billing Zip Code']) !!} @if ($errors->has('bill_zip')) {{ $errors->first('bill_zip') }} @endif
@if(Session::has('destination')) @if(Session::get('destination') == 'wholesale') @if (Session::has('label')) @include('partials.checkoutButtons') @endif @else @include('partials.checkoutButtons') @endif @else @include('partials.checkoutButtons') @endif
{!! Form::close() !!}
@endsection