@extends('layouts.master') @section('title') Email @endsection @section('current-page') Send Email @endsection @section('content')

Send Email

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::open(array('url' => $url,'class'=>'inbox-compose form-horizontal form-bordered form-label-stripped',"enctype" => "multipart/form-data")) !!} {!! Form::hidden('user_id',Sentinel::getUser()->id,array('class'=>'form-control')) !!}
{!! Form::label('Subject',null,array('class'=>'col-md-3 control-label')) !!}
{!! Form::text('subject','',array('class'=>'form-control','required'=>'required')) !!}
{!! Form::textarea('message','',array('class'=>'inbox-editor inbox-wysihtml5 form-control wysihtml5 ','required'=>'required','placeholder'=>'Your message here')) !!}

Attachements

{!! Form::file('file1',null,array()) !!} {!! Form::file('file2',null,array()) !!} {!! Form::file('file3',null,array()) !!}
{!! Form::close() !!}
@endsection