Files
opensem/resources/views/Admin/Botanic/Genres/create.blade.php
2021-07-27 22:12:58 +02:00

14 lines
369 B
PHP

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