@include('includes.admin.header') @include('includes.admin.sidebar')

Add Players From Players

Send Email

{!! Form::open(['class' => 'form-horizontal', 'method' => 'post', 'files' => true]) !!} @if ($errors->any())
{{ implode('', $errors->all('
:message
')) }}
@endif
{!! Form::text('data[subject]', '', ['class' => 'form-control', 'placeholder' => 'Subject']); !!}
{!! Form::select('data[email_groups]', ['' => '---select group---','All Users' => 'All Users', 'Users with active votes' => 'Users with active votes', 'Confirmed accounts with notification option yes' => 'Confirmed accounts with notification option yes', 'Confirmed accounts with notification option yes(Excluding users with active votes)' => 'Confirmed accounts with notification option yes(Excluding users with active votes)'], '', ['class' => 'form-control']); !!}
{!! Form::textarea('data[emails]', '', ['class' => 'form-control', 'placeholder' => 'Email']); !!}
{!! Form::text('data[cc]', '', ['class' => 'form-control', 'placeholder' => 'Cc']); !!}
{!! Form::text('data[bcc]', '', ['class' => 'form-control', 'placeholder' => 'Bcc']); !!}
{!! Form::textarea('data[body]', '', ['class' => 'form-control', 'placeholder' => 'Body', 'id' => 'email_body']); !!}
{!! Form::close() !!}
@include('includes.admin.footer')