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