@extends('layouts.scaffold')
@section('title')
Create Batch Email|Golars Networks
@stop
@section('main')
{{ Form::open(array('route' => 'batchemails.store','id' => 'mailCreate')) }}
@if($addp == 1)
-
{{ Form::label('student_email', 'Student Email:') }}
{{ Form::select('student_email[]',$email ,$selval,array('multiple','true')) }}
@endif
-
{{ Form::label('email_subject', 'Email Subject:') }}
{{ Form::text('email_subject') }}
-
{{ Form::label('email_message', 'Email Message:') }}
{{ Form::textarea('email_message',null,array('class'=>'ckeditor')) }}
{{ Form::hidden('batch_id', $batch_id)}}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
Cancel
{{ Form::close() }}
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
@if ($scripts='js/batchemail/batchemail.js') @endif
@stop