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