@extends('layouts.master') @section('page_title',"Promotion") @section('content')
{{ Form::page_header("Promotion", "paper_stack") }} @if($campaign_event->campaign_event) {{ Form::open(['url' => action('PromoController@update', compact('promo'))]) }} @else {{ Form::open(['url' => action('PromoController@store', compact('business', 'campaign'))]) }} @endif
{{ Form::hidden('event_type', \App\Models\Campaign_Event::CAMPAIGN_EVENT_TYPE_PROMO) }} {{ Form::hidden('campaign', $campaign->campaign) }} {{ Form::hidden('business', $business->business) }} {{ Form::hidden('campaign_event', $campaign_event->campaign_event) }} {{ Form::hidden('creation_type', $promo->creation_type, ['id' => 'creation_type']) }}
{{ Form::close() }}
@endsection @section('page_script') @include('shared_script._tinymce_init_image') @endsection @section('page_style') @endsection