@extends('layouts.admin.app') @section('title') Add Order - Wholesale @stop @section('main')
{!! Form::open(['method'=>'POST','files'=>'true','action' => 'AdminAddOrderController@wholesaleStore', 'class'=>'form-horizontal','@keydown.enter.prevent', 'autocomplete'=>'off']) !!} @include('admin.add-order.partials.RegisteredUsers') @include('admin.add-order.partials.emailNotification') @include('admin.add-order.partials.customerInfo')

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
@include('admin.add-order.partials.billingInfo')

LABEL SELECTION

{!! Form::label('label_type_id','Select Label Option:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::select('label_type_id', $labelTypes, null,['class'=>'form-control', 'v-model'=>'label_type_id', 'placeholder'=>'Select Label Option']) !!} @if ($errors->has('label_type_id')) {{ $errors->first('label_type_id') }} @endif

PAYMENT METHOD

{!! Form::label('payment_method','Payment Method:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::select('payment_method', ['Credit Card'=>'Credit Card', 'Invoice'=>'Invoice'], 'cc',['class'=>'form-control', 'v-model'=>'payment_method']) !!} @if ($errors->has('payment_method')) {{ $errors->first('payment_method') }} @endif

CART

{!! Form::label('stocks','Stocks') !!}

@{{ cartItem.product.inventory / cartItem.product.unit.name }}

0

{!! Form::label('selected_quantity','Quantity:') !!} {!! Form::number('selected_quantity', null, ['class'=>'form-control','v-model'=>'cartItem.quantity', 'ref'=>'quantity','@keydown.enter.prevent'=>'addToCart(cartItem)']) !!}
{!! Form::label('product','Select Product Number:') !!}
{!! Form::label('product','Enter') !!} {!! Form::button('Add to Cart', ['class'=>'btn btn-primary btn-block','@click.prevent'=>'addToCart(cartItem)','@keydown.enter.prevent'=>'addToCart(cartItem)','@keydown.tab.prevent'=>'back']) !!}

QTY SKU NAME PRICE SUBTOTAL REMOVE
@{{ item.qty }} @{{ item.options.sku }} @{{ item.name }} $ @{{ item.price | formatCurrency }} $ @{{ item.subtotal | formatCurrency }}
TOTAL $ @{{ Total | formatCurrency }}
@include('admin.add-order.partials.addInfo') {!! Form::submit('Submit Order', ['class'=>'btn btn-primary btn-block']) !!} {!! Form::close() !!}
@stop @section('footer') @stop