Files
opensem/resources/views/Admin/Shop/Producers/create.blade.php
Ludovic CANDELLIER d8bf91da54 Add plus on products
2022-04-25 20:02:28 +02:00

12 lines
384 B
PHP

@extends('layout.index', [
'title' => __('shop.producers.title'),
'subtitle' => __('shop.producers.add'),
'breadcrumb' => [__('shop.producers.title'), __('shop.producers.add')]
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.Producers.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
@include('Admin.Shop.Producers.form')
</form>
@endsection