@extends('layouts/pos_layout') @section('title', '| Add Product Model') @section('content')
New Product Model
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('name', 'Model:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('name', $value = null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter product model name']) !!}

{!! Form::label('productGroupId', 'Group:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('productGroupId', ($productGroups), null, array('class'=>'form-control', 'id' => 'productGroupId','placeholder' => 'Please Select Product Group')) !!}

{!! Form::label('productCategoryId', 'Category:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('productCategoryId', ($productCategories), null, array('class'=>'form-control', 'id' => 'productCategoryId','placeholder' => 'Please Select Product Category')) !!}

{!! Form::label('productSubCategoryId', 'Sub Catagory:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('productSubCategoryId', ($productSubCategories), null, array('class'=>'form-control', 'id' => 'productSubCategoryId','placeholder' => 'Please Select Product SubCategory')) !!}

{!! Form::label('productBrandId', 'Brand:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('productBrandId', ($productBrands), null, array('class'=>'form-control', 'id' => 'productBrandId','placeholder' => 'Please Select Product Brand')) !!}

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