@extends('layouts.app') @section('title','Checkout') @section('content')
{!! Form::open(['method'=>'POST','action' => 'CheckoutController@reviewNext']) !!}
@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
@endif @endif
Customer Information
{!! Form::label('first_name','First Name:') !!} {!! Form::text('first_name', $checkout['first_name'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('last_name','Last Name:') !!} {!! Form::text('last_name', $checkout['last_name'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('company','Company:') !!} {!! Form::text('company', $checkout['company'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('phone','Phone Number:') !!} {!! Form::text('phone', $checkout['phone'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('email','Email Address:') !!} {!! Form::text('email', $checkout['email'], ['class'=>'form-control', 'disabled']) !!}
Shipping Information
{!! Form::label('ship_to','To:') !!} {!! Form::text('ship_to', $checkout['ship_to'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('ship_address','Address :') !!} {!! Form::text('ship_address', $checkout['ship_address'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('ship_city','City:') !!} {!! Form::text('ship_city', $checkout['ship_city'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('ship_state','State:') !!} {!! Form::text('ship_state', $ship_state->name, ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('ship_zip','Zip Code:') !!} {!! Form::text('ship_zip', $checkout['ship_zip'], ['class'=>'form-control', 'disabled']) !!}
Billing Information
{!! Form::label('bill_to','To:') !!} {!! Form::text('bill_to', $checkout['bill_to'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('bill_address','Address :') !!} {!! Form::text('bill_address', $checkout['bill_address'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('bill_city','City:') !!} {!! Form::text('bill_city', $checkout['bill_city'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('bill_state','State:') !!} {!! Form::text('bill_state', $bill_state->name, ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('bill_zip','Zip Code:') !!} {!! Form::text('bill_zip', $checkout['bill_zip'], ['class'=>'form-control', 'disabled']) !!}
@if($checkout['payment_method'] == 'invoice')
Invoice
You will see your Purchase Order Number in the transaction form after placing the order.
@elseif($checkout['payment_method'] == 'cc')
Credit Card
{!! Form::label('card_type','Card Type:') !!} {!! Form::text('card_type', $checkout['card_type'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('card_name','Name on Card :') !!} {!! Form::text('card_name', $checkout['card_name'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('card_number','Card Number:') !!} {!! Form::text('card_number', $checkout['card_number'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('card_code','Validation Code:') !!} {!! Form::text('card_code', $checkout['card_code'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('card_month','Expiration Month:') !!} {!! Form::text('card_month', $checkout['card_month'], ['class'=>'form-control', 'disabled']) !!}
{!! Form::label('card_year','Expiration Year:') !!} {!! Form::text('card_year', $checkout['card_year'], ['class'=>'form-control', 'disabled']) !!}
@endif
Additional Information
{!! Form::textarea('comment',$checkout['comment'], ['class'=>'form-control', 'rows'=>'4' , 'disabled']) !!}
{!! Form::close() !!}
@endsection