@extends('layouts.master') @section('title'){{trans_choice('general.send',1)}} {{trans_choice('general.email',1)}} @endsection @section('content')

{{trans_choice('general.send',1)}} {{trans_choice('general.email',1)}}

{!! Form::open(array('url' => url('communication/email/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}

In your email you can use any of the following tags: {firstName}, {lastName}, {address}, {mobilePhone}, {homePhone}

{!! Form::label('send_to',trans_choice('general.to',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::select('send_to',$members, $selected,array('class' => 'form-control select2', 'required'=>"")) !!}
{!! Form::label('subject',trans_choice('general.subject',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('subject',null, array('class' => 'form-control', 'required'=>"")) !!}
{!! Form::label('message',trans_choice('general.message',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::textarea('message',null, array('class' => 'form-control tinymce', 'placeholder'=>"")) !!}
{!! Form::close() !!}
@endsection