@extends('layouts.fixed') @section('title','Save-UNit Inventory') @section('content')

Manage Unit


Add A Unit


{!! Form::open(['method'=>'POST', 'class'=>'form-horizontal']) !!}
{{Form::label('details', 'Unit Name', ['class'=>'label-control'])}} {{ Form::text('name',old('name'),['class'=>'form-control','placeholder'=>'Enter Grade name','autofocus','required']) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{Form::label('details', 'Unit Description', ['class'=>'label-control'])}} {{ Form::textarea('details',old('details'),['class'=>'form-control','placeholder'=>'shortly Brief about Unit','rows'=>5,'cols'=>5]) }} @if ($errors->has('details')) {{ $errors->first('details') }} @endif
{{ Form::submit('Save Unit', ['class'=>'btn btn-success btn-block']) }}
{!! Form::close() !!}
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @for($i=1;$i<10;$i++) @endfor

Grade's List

#SL Name Description Action
{{ $i }} Well-Group Unit {{ $i }} Unit description {{ $i }}    
@stop @section('style') @stop @section('plugin') @stop @section('script') @stop