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