17 lines
450 B
PHP
17 lines
450 B
PHP
@extends('layout.index', [
|
|
'title' => __('Botanic.varieties.title'),
|
|
'subtitle' => __('Botanic.varieties.add'),
|
|
'breadcrumb' => [__('Botanic.varieties.title'), __('Botanic.varieties.add')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Admin.Botanic.Varieties.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
@include('Admin.Botanic.Varieties.form')
|
|
</form>
|
|
|
|
@endsection
|