@lang('base/announcement.document_title')

@include('flash::message')

@lang('general.text_add')

{!! Form::open(['route' => 'announcements.store','method' => 'POST','class' => 'form-horizontal','role' => 'form','id'=>'form']) !!}
{!! html_entity_decode(Form::label('description', __('base/announcement.entry_description') . ' ', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::textarea('description', old('description'), ['class' => 'form-control', 'placeholder' => __('base/announcement.entry_description'),'required','autofocus','cols' => '4','style'=>'height: 100px;']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! html_entity_decode(Form::label('date_start', __('base/announcement.entry_date_start') . ' *', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::text('date_start', old('date_start'), ['class' => 'form-control', 'placeholder' => __('base/announcement.entry_date_start'),'required','autocomplete'=>'off']) !!}
@if ($errors->has('date_start')) {{ $errors->first('date_start') }} @endif
{!! html_entity_decode(Form::label('date_end', __('base/announcement.entry_date_end') . ' *', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::text('date_end', old('date_end'), ['class' => 'form-control', 'placeholder' => __('base/announcement.entry_date_end'),'required','autocomplete'=>'off']) !!}
@if ($errors->has('date_end')) {{ $errors->first('date_end') }} @endif
{!! html_entity_decode(Form::label('type', __('base/announcement.entry_type') . ' *', ['class' => 'col-md-3 col-xs-12 control-label'])) !!}
{!! Form::select('type', $types,old('type'), ['class' => 'form-control', 'placeholder' => __('general.text_select'), 'required']) !!} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{!! Form::close() !!}