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