Files
opensem/resources/views/Admin/Shop/Merchandises/edit.blade.php
Ludovic CANDELLIER 2f77b5fc23 wip 3d
2022-04-13 23:49:48 +02:00

13 lines
475 B
PHP

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