@extends('layouts.app') @section('title', 'Marketing Popup | Website') @section('extrastyles') @endsection @section('content')
Website Pop Up
@if( optional($popup)->active == 0 ) Popup is Disabled, enable it now. @else Popup is Enabled, disable it now. @endif
@if($totalAvailableRegions > 1 )
{!! Form::open(['id' => 'regionFilterFrm', 'method' => 'get']) !!} {!! Form::select('region', $filterRegions, request()->input('region'),['class' => 'form-control region_selector']) !!} {!! Form::close() !!}
@if( !empty(request()->input('region')) and request()->input('region') != 'all' ) Delete @endif @if(count($regions) > 0) Add Region @endif
@endif
@include('flash::message') {!! Form::open() !!} {!! Form::close() !!}
@include('Website::layout._gallery_popup') @endsection @section('footer') @endsection