@extends('layouts.master')
@section('page_title', 'Mailbox Mining')
@section('content')
{{ Form::page_header('Mailbox Mining', 'business') }}
@if(isset($business_user_imap_setting))
@endif
@if(Gate::allows(\App\Providers\AuthServiceProvider::GATE_BUSINESS_ADMIN, $business) || isset($is_reviewer))
{{ Form::row_select_inline('business_user', 'Business User', $buid, $business_user_select, 5, 7, null, 'business_user_select_onchange()', 'Select User', null, 'mailbox_user_select') }}
Select A User
@endif
{{ Form::label_ex('Show me all new contacts since') }}
{{ Form::date_ex('since_date', $since_date, 4, 'since_date') }}
@if(isset($buid))
@include('business.imap._mailbox_buddy_grids', compact('data_prospects', 'data_fuse_org_clients', 'columns', 'data_blocklist', 'already_taken', 'already_taken_columns', 'blocklisted_domains', 'ignored_email_count'))
@endif
@endsection
@section('page_script')
@include('shared_script._status_alert_notification_script')
{{ Html::script('/js/moment.min.js') }}
{{ Html::script('/js/daterangepicker.js') }}
@endsection
@section('page_style')
{!! HTML::style('/css/daterangepicker.css') !!}
{!! HTML::style('/css/daterangepicker_custom.css') !!}
@endsection