Files
opensem/resources/views/Shop/admin/Genres/create.blade.php
Ludovic CANDELLIER 002967136e renaming dir
2020-04-15 17:34:57 +02:00

14 lines
351 B
PHP

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