Bulk subscription cancellation

Cancel multiple customer subscriptions by providing a comma separated list of email addresses.
{!! Form::open([ 'route' => 'tools.bulk_cancel_subscriptions.preview', 'method' => 'POST', 'id' => 'bulk_cancel_subscriptions_form' ]) !!}
{!! Form::label('emails', 'Customer email addresses (comma or line separated)') !!} {!! Form::textarea('emails', null, [ 'class' => 'form-control', 'rows' => 4, 'placeholder' => 'email-one@example.com, email-two@example.com' ]) !!}
{!! Form::label('add_note', 'Optional note to apply to cancelled customers') !!} {!! Form::textarea('add_note', null, [ 'class' => 'form-control', 'rows' => 3, 'placeholder' => 'E.g. Customer requested service stop via bulk cancellation tool' ]) !!} When provided, this note will be stored against every lead whose subscription is cancelled.
{!! Form::close() !!}