@extends('layouts.app') @section('content')
{!! Form::open(['url' => action('ProductController@store'), 'class' => 'product_form', 'method' => 'post', 'id' => 'product_add_form' , 'files' => true]) !!}
STOCK LEDGER

image

Product Type:

Group *:

Sub Group:

Nested Group:

Item code:

Description:

Unit :

Pack(Y/N) :

{!! Form::select('is_pack', ['N' => 'N', 'Y' => 'Y'],'N', ['class' => 'form-control', 'maxlength' => '1']); !!}

Weight(Y/N) :

{!! Form::select('is_weight', ['N' => 'N', 'Y' => 'Y'], 'N', ['class' => 'form-control', 'maxlength' => '1']); !!}

Retail Price : *

{!! Form::text('retail_price', null, ['class' => 'form-control input-sm input_number', 'required']); !!}

Whole Sale Price : *

{!! Form::text('wholesale_price', null, ['class' => 'form-control input-sm input_number', 'required']); !!}

Reorder Level :

{!! Form::number('reorder_level', 0, ['class' => 'form-control']); !!}

Reorder Quantity :

{!! Form::number('reorder_quantity', 0, ['class' => 'form-control']); !!}

Purchase Rate :

{!! Form::text('purchase_rate', 0, ['class' => 'form-control input-sm input_number']); !!}

Avr.Cost :

{!! Form::number('avr_cost', 0, ['class' => 'form-control']); !!}

Size / Gage (Y/N) :

{!! Form::select('is_size', ['N' => 'N', 'Y' => 'Y'], 'N', ['class' => 'form-control', 'style'=>'width:20%', 'maxlength' => '1']); !!}

Is Variant Product? :

{!! Form::select('is_variant', ['0' => 'N', '1' => 'Y'], 0, ['class' => 'form-control', 'style'=>'width:20%', 'maxlength' => '1']); !!}

{!! Form::close() !!}
@endsection @section('javascript') @endsection