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