@extends('layouts.master') @section('page_title', 'Domain Ignore') @section('content') {{ Form::page_header("Add New Domain to Ignore", "sourcedata") }} {{ Form::open(['url' => action('ImapIntegrationController@post_create_domain_blocklist', compact('business'))]) }}
{{ Form::hidden('business', $business->business) }}
{{ Form::row_text_inline('domain', 'Domain', null, 1, 3, \App\Helpers\FormComponentHelper::SIZE_LARGE) }}
{{ Form::button_save() }} {{ Form::button_link('Cancel', action('ImapIntegrationController@manage_domain_blocklist', compact('business'))) }}
{{ Form::close() }} @endsection