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