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

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

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

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

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

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