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