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

13 lines
458 B
PHP

@extends('layout.index', [
'title' => __('Shop.producers.title'),
'subtitle' => __('Shop.producers.edit'),
'breadcrumb' => [__('Shop.producers.title'), __('Shop.producers.edit')]
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.Producers.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
<input type="hidden" name="id" id="id" value="{{ $producer['id'] }}">
@include('Admin.Shop.Producers.form')
</form>
@endsection