@extends('layouts.master') @section('content')

{{ trans('breadcrumbs.Campaign Report') }}

{{ trans('layout.Filter') }}

{{ Form::label('CAMPAIGN_TYPE', trans('reports.Campaign Type'))}} {{ Form::select('CAMPAIGN_TYPE', ['REGISTRATION' => 'REGISTRATION'], '', ['class' => 'form-control','placeholder' => trans('reports.Select option'),'id' => 'CAMPAIGN_TYPE']) }}
{{ Form::label('CAMPAIGN_NAME', trans('reports.Campaign Name')) }} {{ Form::text('CAMPAIGN_NAME','', ['id' => 'CAMPAIGN_NAME', 'class' => 'form-control', 'placeholder' => trans('reports.Campaign Name')]) }}
{{ Form::label('CAMPAIGN_CODE', trans('reports.Campaign Code')) }} {{ Form::text('CAMPAIGN_CODE','', ['id' => 'CAMPAIGN_CODE', 'class' => 'form-control', 'placeholder' => trans('reports.Campaign Code')]) }}
{{ Form::label('PARTNER_NAME', trans('reports.Choose Partner'))}} {{ Form::select('PARTNER_NAME', $partnerName, '', ['class' => 'form-control select2','placeholder' => trans('reports.Partner'),'id' => 'PARTNER_NAME']) }}
{{ Form::label('DATE_RANGE',trans('layout.Select Date Range')) }}
{{ Form::label('FTD_DATE_RANGE',trans('reports.FTD Date Range')) }}


@endsection @section('javascript') @include('datatablejs') @stop