@extends('layouts.admin.app') @section('title') Edit @stop @section('main')
{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@invoicerCartUpdate', $order->id], 'class'=>'form-horizontal','@keydown.enter.prevent', 'autocomplete'=>'off']) !!}

CART

{!! 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 }}
{!! Form::submit('Update Cart', ['class'=>'btn btn-primary btn-block']) !!} {!! Form::close() !!}
@stop @section('footer') @stop