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