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