@extends('layouts.admin.app') @section('title') Messenger @stop @section('main')
Back to Inbox @include('admin.messenger.folder')
{!! Form::open(['method'=>'POST','action' => 'AdminMessengerController@store']) !!}

Compose New Message

{!! Form::select('to', $users, null, ['class'=>'form-control select2','placeholder'=>'Select a user','style'=>'width:100%;']) !!} @if ($errors->has('to')) {{ $errors->first('to') }} @endif
{!! Form::textarea('message', null, ['class'=>'form-control','style'=>'height: 300px','placeholder'=>'Enter Message']) !!} @if ($errors->has('message')) {{ $errors->first('message') }} @endif
{!! Form::close() !!}
@stop @section('footer') @stop