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

PAYMENT INFORMATION

{!! Form::label('card_type','Card Type:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::select('card_type', $cards, null,['class'=>'form-control', 'placeholder'=>'Select Card Type']) !!} @if ($errors->has('card_type')) {{ $errors->first('card_type') }} @endif
{!! Form::label('card_name','Name on Card :', ['class'=>'control-label col-sm-2']) !!}
{!! Form::text('card_name', null, ['class'=>'form-control','placeholder'=>'Enter Name']) !!} @if ($errors->has('card_name')) {{ $errors->first('card_name') }} @endif
{!! Form::label('card_number','Card Number:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::number('card_number', null, ['class'=>'form-control','placeholder'=>'Card Number']) !!} @if ($errors->has('card_number')) {{ $errors->first('card_number') }} @endif
{!! Form::label('card_code','Validation Code:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::number('card_code', null, ['class'=>'form-control','placeholder'=>'Validation Code']) !!} @if ($errors->has('card_code')) {{ $errors->first('card_code') }} @endif
{!! Form::label('card_month','Expiration Month:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::select('card_month', $months, null,['class'=>'form-control', 'placeholder'=>'Select Month']) !!} @if ($errors->has('card_month')) {{ $errors->first('card_month') }} @endif
{!! Form::label('card_year','Expiration Year:', ['class'=>'control-label col-sm-2']) !!}
{!! Form::select('card_year', $years, null,['class'=>'form-control', 'placeholder'=>'Select Year']) !!} @if ($errors->has('card_year')) {{ $errors->first('card_year') }} @endif

CART

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

@{{ cartItem.product.inventory }}

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