15 lines
468 B
PHP
15 lines
468 B
PHP
@extends('layout.index', [
|
|
'title' => __('price_generics.title'),
|
|
'subtitle' => __('price_generics.edit.title'),
|
|
'breadcrumb' => [__('price_generics.title'), __('price_generics.edit.title')]
|
|
])
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Shop.Admin.PriceGenerics.store', 'id' => 'price-generic-form', 'autocomplete' => 'off']) }}
|
|
<input type="hidden" name="id" value="{{ $generic['id'] }}">
|
|
@include('Shop.Admin.PriceGenerics.form')
|
|
</form>
|
|
|
|
@endsection
|