Files
opensem/resources/views/Admin/Botanic/Genres/edit.blade.php
2021-07-27 22:12:58 +02:00

17 lines
394 B
PHP

@extends('layout.index', [
'title' => __('Botanic.genres.title'),
'subtitle' => __('Botanic.genres.edit'),
'breadcrumb' => ['Familles']
])
@section('content')
{{ Form::open(['route' => 'Admin.Botanic.Genres.store', 'id' => 'form', 'autocomplete' => 'off']) }}
<input type="hidden" name="id" value="{{ $genre['id'] }}">
@include('Admin.Botanic.Genres.form')
</form>
@endsection