27 lines
630 B
PHP
27 lines
630 B
PHP
@extends('layout.index', [
|
|
'title' => __('Botanic.species.title'),
|
|
'subtitle' => __('Botanic.species.edit'),
|
|
'breadcrumb' => [__('Botanic.species.title'), __('Botanic.species.list')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
@include('boilerplate::load.select2')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Botanic.Admin.Species.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
<input type="hidden" name="id" value="{{ $id }}">
|
|
|
|
@include('Botanic.Admin.Species.form')
|
|
|
|
</form>
|
|
|
|
@endsection
|
|
|
|
@push('js')
|
|
<script>
|
|
$(function() {
|
|
$(".select2").select2();
|
|
});
|
|
</script>
|
|
@endpush |