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