@extends('layouts.admin.app') @section('title') Edit Product @stop @section('main')
{!! Form::open(['method'=>'PUT','files'=>'true','action' => ['AdminProductsController@update', $product->id]]) !!}
{!! Form::label('sku', 'SKU') !!} {!! Form::text('sku', $product->sku, ['class'=>'form-control','placeholder'=>'SKU', 'disabled']) !!} @if ($errors->has('sku')) {{ $errors->first('sku') }} @endif
{!! Form::label('name', 'Name') !!} {!! Form::text('name', $product->name, ['class'=>'form-control','placeholder'=>'Product name']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('category_id', 'Category') !!} {!! Form::select('category_id', $categories, $product->category_id,['class'=>'form-control', 'placeholder'=>'Select category']) !!} @if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
{!! Form::label('price_retail', 'Retail Price') !!} {!! Form::number('price_retail', $product->price_retail, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'0.00']) !!} @if ($errors->has('price_retail')) {{ $errors->first('price_retail') }} @endif
{!! Form::label('price_zone1', 'Zone 1 Price') !!} {!! Form::number('price_zone1', $product->price_zone1, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'0.00']) !!} @if ($errors->has('price_zone1')) {{ $errors->first('price_zone1') }} @endif
{!! Form::label('price_zone2', 'Zone 2 Price') !!} {!! Form::number('price_zone2', $product->price_zone2, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'0.00']) !!} @if ($errors->has('price_zone2')) {{ $errors->first('price_zone2') }} @endif
{!! Form::label('unit_id', 'Unit') !!} {!! Form::select('unit_id', $units, $product->unit_id,['class'=>'form-control', 'placeholder'=>'Select unit']) !!} @if ($errors->has('unit_id')) {{ $errors->first('unit_id') }} @endif
{!! Form::label('measure_id', 'Measure') !!} {!! Form::select('measure_id', $measures, $product->measure_id,['class'=>'form-control', 'placeholder'=>'Select measure']) !!} @if ($errors->has('measure_id')) {{ $errors->first('measure_id') }} @endif
{!! Form::label('warehouse', 'Warehouse #') !!} {!! Form::number('warehouse', $product->warehouse, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'#']) !!} @if ($errors->has('warehouse')) {{ $errors->first('warehouse') }} @endif
{!! Form::label('photo', 'Upload Photo') !!} {!! Form::file('photo', ['class'=>'form-control']) !!} @if ($errors->has('photo')) {{ $errors->first('photo') }} @endif
{!! Form::label('description', 'Description') !!} {!! Form::textarea('description', $product->description, ['class'=>'form-control', 'rows'=>'5','placeholder'=>'Product Description']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::hidden('admin_only', 0) !!} {!! Form::checkbox('admin_only', 1, $product->admin_only) !!} {!! Form::label('admin_only', 'Show to Admin Only') !!} @if ($errors->has('admin_only')) {{ $errors->first('admin_only') }} @endif
{!! Form::hidden('show_in_retail', 0) !!} {!! Form::checkbox('show_in_retail', 1, $product->show_in_retail) !!} {!! Form::label('show_in_retail', 'Show to Retail') !!} @if ($errors->has('show_in_retail')) {{ $errors->first('show_in_retail') }} @endif
{!! Form::hidden('show_in_wholesale', 0) !!} {!! Form::checkbox('show_in_wholesale', 1, $product->show_in_wholesale) !!} {!! Form::label('show_in_wholesale', 'Show to Wholesale') !!} @if ($errors->has('show_in_wholesale')) {{ $errors->first('show_in_wholesale') }} @endif
{!! Form::hidden('is_quantity', 0) !!} {!! Form::checkbox('is_quantity', 1, $product->is_quantity) !!} {!! Form::label('is_quantity', 'Countable') !!} @if ($errors->has('is_quantity')) {{ $errors->first('is_quantity') }} @endif
{!! Form::label('use_inventory_id', 'Use inventory of:') !!} {!! Form::select('use_inventory_id', $products, $product->use_inventory_id,['class'=>'form-control select2', 'placeholder'=>'Not Selected',$use_inventory? 'disabled':'']) !!} @if ($errors->has('use_inventory_id')) {{ $errors->first('use_inventory_id') }} @endif
{!! Form::label('manual_thold', 'Manual THOLD - Green') !!} {!! Form::number('manual_thold', $product->manual_thold, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'0.00']) !!} @if ($errors->has('manual_thold')) {{ $errors->first('manual_thold') }} @endif
{!! Form::label('manual_thold_2', 'Manual THOLD - Orange') !!} {!! Form::number('manual_thold_2', $product->manual_thold_2, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'0.00']) !!} @if ($errors->has('manual_thold_2')) {{ $errors->first('manual_thold_2') }} @endif
{!! Form::label('manual_thold_3', 'Manual THOLD - Red') !!} {!! Form::number('manual_thold_3', $product->manual_thold_3, ['class'=>'form-control', 'step'=>'0.01','placeholder'=>'0.00']) !!} @if ($errors->has('manual_thold_3')) {{ $errors->first('manual_thold_3') }} @endif
Go Back {!! Form::submit('Update Product', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop