@extends('layouts.handa') @section('content') {!! Form::open(['url' => 'backdoor/bulletins/save', 'class' => 'form-horizontal', 'autocomplete' => 'off']) !!}

Bulletins | {{ $option }}

{!! Form::select('send_mode', array('Individual', 'Group', 'All'), NULL, ['class' => 'form-control', 'id' => 'send_mode']) !!}
{{ $errors->first('recipients') }} {!! Form::select('recipients[]', $recipients, NULL, ['id' => 'recipients', 'class' => 'form-control chosen-select', 'multiple']) !!}
{!! Form::select('bt_id', $type, NULL, ['class' => 'form-control']) !!}
{{ $errors->first('bl_message') }} {!! Form::textarea('bl_message', NULL, ['class' => 'form-control', 'size' => '10x5']) !!}
{!! Form::button(' Save', ['class' => 'btn btn-primary btn-block', 'type' => 'submit']) !!}
{!! Form::close() !!} @stop