46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
|
|
@if ($errors->any())
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<h4 class="font-weight-bold py-2 mb-2">
|
|
{{ __('Create/Edit Promotion') }}
|
|
</h4>
|
|
|
|
{!! Form::open(['action' => route('admin_promotion_detail', $promotion->id), 'class' => 'form-horizontal']) !!}
|
|
<input type="hidden" name="id" id="id" value="@if($promotion->id>0){{$promotion->id}}@else new @endif">
|
|
|
|
<div class="text-left mt-0 mb-2">
|
|
<button type="submit" class="btn btn-submit" name="action" value="save-promotion">{{ __('save') }}</button>
|
|
<a href="{{ route('admin_promotions') }}" class="btn btn-default">{{ __('back') }}</a>
|
|
</div>
|
|
|
|
@include('admin.promotion.form')
|
|
|
|
<div class="text-left mt-0 mb-2">
|
|
<button type="submit" class="btn btn-submit" name="action" value="save-promotion">{{ __('save') }}</button>
|
|
<a href="{{ route('admin_promotions') }}" class="btn btn-default">{{ __('back') }}</a>
|
|
</div>
|
|
|
|
{!! Form::close() !!}
|
|
|
|
<script>
|
|
$( document ).ready(function() {
|
|
|
|
});
|
|
</script>
|
|
|
|
@endsection
|