@extends('admin.layout') @section('content')

{{ trans('labels.SendNotification') }} {{ trans('labels.SendNotification') }}...

{{ trans('labels.SendNotification') }}

@if (count($errors) > 0) @if($errors->any()) @endif @endif

@if(count($result['message'])>0) @endif
{!! Form::open(array('url' =>'admin/sendNotifications', 'method'=>'post', 'class' => 'form-horizontal form-validate', 'enctype'=>'multipart/form-data')) !!}
{{ trans('labels.SelectDeviceText') }}
{{ trans('labels.SelectDeviceStatusText') }}
{!! Form::text('title', '', array('class'=>'form-control field-validate', 'id'=>'title'))!!} {{ trans('labels.TitleText') }}
{!! Form::file('image', array('id'=>'image')) !!} {{ trans('labels.notificationImageText') }}
{!! Form::textarea('message', '', array('class'=>'form-control field-validate', 'id'=>'message'))!!} {{ trans('labels.SendNotificationDetailext') }}
{!! Form::close() !!}
@endsection