@extends('appshell::layouts.private') @section('title') {{ __('Create new product') }} @stop @section('content') {!! Form::open(['route' => 'vanilo.admin.product.store', 'autocomplete' => 'off', 'enctype'=>'multipart/form-data', 'class' => 'row']) !!}
{{ __('Product Details') }}
@include('vanilo::product._form')
@include('vanilo::media._create')
{!! Form::close() !!} @stop