@extends('layouts/fams_layout') @section('title', '| Prefix') @section('content')
Product Prefix
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('name', 'Prefix Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('name',null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter Prefix Name']) !!}

{!! Form::label('prefixCode', 'Prefix Code:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('code', null, ['class' => 'form-control', 'id' => 'prefixCode', 'type' => 'text', 'placeholder' => 'Enter Prefix Code']) !!}

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