@extends('layouts.app') @section('title') Add Inventory @stop @section('breadcrumb') @stop @section('content')

Add Inventory

{{csrf_field()}}
@if ($errors->has('itemcode')) {{ $errors->first('itemcode') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('brand')) {{ $errors->first('brand') }} @endif
@if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif @if (session('quantity')) {!! session('quantity') !!} @endif
@if ($errors->has('category')) {{ $errors->first('category') }} @endif
@if ($errors->has('unit')) {{ $errors->first('unit') }} @endif
@if ($errors->has('minqty')) {{ $errors->first('minqty') }} @endif @if (session('minquantity')) {!! session('minquantity') !!} @endif
@if ($errors->has('maxqty')) {{ $errors->first('maxqty') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
Critical :
Non Critical :
@if ($errors->has('storage_type')) {{ $errors->first('storage_type') }} @endif
@stop