@extends('layouts.master') @section('page_title',$title) @section('content') {{ Form::open(['url' => action('CampaignDeliverableController@update', compact('campaign_deliverable'))]) }}
{{ Form::page_header($title, "paper_stack") }}
@foreach($campaign_deliverable->_campaign_deliverable_content_block()->orderBy('sort')->get() as $campaign_deliverable_content_block)
id_field }} class="content-block-details">
{{ Form::label_title($campaign_deliverable_content_block->_content_block->block_name) }}
@include('reach.campaign_event.content_block.edit.'.$campaign_deliverable_content_block->_content_block->view_name, ['data' => $campaign_deliverable_content_block])
@endforeach
{{ Form::button_save() }} {{ Form::button_link('Close', $campaign_deliverable->close_url) }}
@endsection @section('page_script') @endsection @section('page_style') @endsection