@extends('adminlte::page') @section('title', $pageTitle) @section('content_header')

{{ $pageTitle }}

@stop @section('content') @include('user.partials.tabs')
@if(Session::has('message')) {{ Session::get('message') }} @endif {!! Form::open(array('url'=>'user/blast/', 'class'=>'form-horizontal ','parsley-validate'=>' ' ,'novalidate'=>' ')) !!}
{!! Form::text('subject',null,array('class'=>'form-control', 'placeholder'=>'','required'=>'true')) !!} @if ($errors->inline->has('subject')) {{ $errors->inline->first('subject') }} @endif
@foreach($roles as $role)
@endforeach @if ($errors->inline->has('roles')) {{ $errors->inline->first('roles') }} @endif
@if ($errors->inline->has('status')) {{ $errors->inline->first('status') }} @endif
@if ($errors->inline->has('message')) {{ $errors->inline->first('message') }} @endif

{{ Lang::get('core.fr_emailtag') }} :

[first_name] [last_name] [email]
{!! Form::close() !!}
@stop