@extends('layouts.admin.app') @section('title') Create Product @stop @section('main')
{!! Form::open(['method'=>'POST','files'=>'true','action' => 'AdminProductsController@store']) !!}
{!! Form::label('sku', 'SKU') !!} {!! Form::text('sku', null, ['class'=>'form-control','placeholder'=>'SKU']) !!} @if ($errors->has('sku')) {{ $errors->first('sku') }} @endif
{!! Form::label('name', 'Name') !!} {!! Form::text('name', null, ['class'=>'form-control','placeholder'=>'Product name']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('category_id', 'Category') !!} {!! Form::select('category_id', $categories, null,['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', null, ['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', null, ['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', null, ['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, null,['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, null,['class'=>'form-control', 'placeholder'=>'Select measure']) !!} @if ($errors->has('measure_id')) {{ $errors->first('measure_id') }} @endif
{!! Form::label('warehouse', 'Warehouse #') !!} {!! Form::number('warehouse', null, ['class'=>'form-control','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', null, ['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, false) !!} {!! 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, true) !!} {!! 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, true) !!} {!! 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, true) !!} {!! Form::label('is_quantity', 'Countable') !!} @if ($errors->has('is_quantity')) {{ $errors->first('is_quantity') }} @endif
{!! Form::submit('Create Product', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop