@extends('welcome') @section('title', '| Home') @section('content')
Item
{!! Form::open(array('url' => 'famsAddProductItem', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('itemName', 'Item Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('itemName', $value = null, ['class' => 'form-control', 'id' => 'itemName', 'type' => 'text', 'placeholder' => 'Enter Item Name']) !!}

{!! Form::label('itemCode', 'Item Code:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('itemCode', $value = null, ['class' => 'form-control', 'id' => 'itemCode', 'type' => 'text', 'placeholder' => 'Enter Item Ocde']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection