13 lines
462 B
PHP
13 lines
462 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" id="id" value="{{ $specie['id'] }}">
|
|
@include('Admin.Botanic.Species.form')
|
|
</form>
|
|
@endsection
|