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