@extends('layouts.master')
@section('page_title', $page_title)
@section('content')
{{ Form::page_header($page_title, "business") }}
@if(\Gate::allows(\App\Providers\AuthServiceProvider::SUPER_ADMIN))
{{ Form::open(['url' => action('SuperAdminBusinessController@export_org_clients', compact('business'))]) }}
@else
{{ Form::open(['url' => action('BusinessController@export_org_clients', compact('business'))]) }}
@endif
@if(isset($new_lead_link))
{{ Form::button_link('Add Contact', $new_lead_link, 'new_lead_btn') }}
@endif
@if($can_sync_mailchimp)
{{ Form::button_link('Sync Mailchimp', action('SuperAdminBusinessController@sync_mailchimp_list_data', compact('business')), 'sync_mailchimp_btn') }}
@endif
{{ Form::button_save('Export', 'action', 'export_btn') }}
{{ Form::close() }}
@if((\Gate::allows(\App\Providers\AuthServiceProvider::SUPER_ADMIN) ||
\Gate::allows(\App\Providers\AuthServiceProvider::GATE_BUSINESS_ADMIN, $business)) && $followup_enabled)
Change Multiple Followups
@endif
@include('search._search_grid_wrapper', compact('column_set'))
@endsection
@section('page_script')
@include('shared_script._search_script_render')
@include('shared_script._dynamic_search_columns')
@include('shared_script._tickets_checkall_script')
@endsection
@section('page_style')
@endsection