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