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

Bulletin Type | {{ $option }}

Bulletin Type Details

{!! Form::hidden('id', $id) !!}
{!! Form::text('bt_name', NULL, ['class' => 'form-control input-sm align-form', 'data-validation' => 'required', 'data-validation-error-msg-container' => '#bt_name', $option == 'View' ? 'readonly' : '']) !!}
{{ $errors->first('bt_name') }}
{!! Form::button(' Save', ['class' => 'btn btn-primary btn-sm', 'type' => 'submit']) !!} Cancel
{!! Form::close() !!} @stop