@extends('admin.layouts.module',array('module_path'=>'products')) @section('page_title')

Add Product

@stop @section('page_subtitle') Please complete the required fields to add a new product @stop @section('page_content')

Product Details

@if ($errors->count() > 0)
{{ $errors->first() }}
@endif {{ Form::open(array('url' => "admin/products")) }} @include('admin.modules.products.fields') {{ Form::close() }}
@stop