Files
opensem/resources/views/Admin/Shop/Offers/edit.blade.php
Ludovic CANDELLIER 9ca510086b comments
2021-08-21 19:48:21 +02:00

15 lines
411 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="{{ $id }}">
@include('Admin.Shop.Offers.form')
</form>
@endsection