@extends('layouts.master') @section('page_title', $page_title) @section('content')
{{ Form::page_header($page_title, $campaign->type == \App\Models\Campaign::CAMPAIGN_TYPE_BUILD ? "build_campaign" : "convo_engage") }}
{{ Form::label_title($page_title) }}
@include('shared.forms._form_filter', ['size' => \App\Helpers\FormComponentHelper::SIZE_SMALL, 'filters' => [ ['id' => 'show_active_link', 'title' => 'Show Active Only', 'action' => 'show_active'], ['id' => 'show_all_link', 'title' => 'Show All', 'default' => true, 'action' => 'show_all'], ]])
{{ Form::separator_row('grey-divider') }} @foreach($feedbacks as $feedback) @include('shared.feedback._feedback', ['request_feedback' => $feedback, 'partial' => 'campaign._feedback']) @endforeach
@endsection @section('page_script') @include('shared_script._list_manager') @include('shared_script._request_feedback_shared_script') @include('shared_script._form_filter_script') @endsection @section('page_style') @endsection