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

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

N.B. SMS cannot exceed 480 characters. 1 sms is 160 characters. Please keep your message in that length

{!! 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('message',translate('message'),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::textarea('message',null, array('class' => 'form-control', 'placeholder'=>"")) !!}
{!! Form::close() !!}
@endsection