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

Bulletins | {{ $option }}

{!! Form::text('bt_type', $bulletin->bulletin_type->bt_name, ['class' => 'form-control', $option == 'View' ? 'readonly' : '']) !!}
{!! Form::textarea('bl_message', NULL, ['class' => 'form-control', $option == 'View' ? 'readonly' : '']) !!}
@foreach($bulletin->bulletin_recipients as $recipient) @endforeach
{!! Form::close() !!} @endsection