Files
opensem/resources/views/shop/admin/Genres/edit.blade.php
Ludovic CANDELLIER 6d1993c037 Inverse fix
2020-04-15 17:40:44 +02:00

17 lines
373 B
PHP

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