Create New Product
@can('view-'.str_slug('Product'))
View Product
@endcan
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::open(['enctype' => 'multipart/form-data', 'url' => '/admin/product', 'files' => true]) !!}
@include ('admin.product.form')
{!! Form::close() !!}