@extends('layouts.master') @section('title'){{translate('send email')}} @endsection @section('content')
{{translate('send email')}}
{!! Form::open(array('url' => url('communication/email/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}

In your email you can use any of the following tags: {borrowerTitle}, {borrowerFirstName}, {borrowerLastName}, {borrowerAddress}, {borrowerMobile}, {borrowerEmail}, {borrowerTotalLoansDue}, {borrowerTotalLoansBalance}, {borrowerTotalLoansPaid}

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