{{ html()->label('Title')->for('title') }} {{-- --}}
{{ html()->text('title') ->class('form-control ') ->placeholder('Title') ->attribute('maxlength', 191) ->required()}} {{-- --}}
{{ html()->label('Body')->for('body')->id('edit_thread_body_label') }} {{-- --}}
{{ html()->textarea('body') ->class('form-control richtext') ->style('width: 100%') ->placeholder('Body') }} {{-- --}}
{{ html()->label('Tags')->for('tags[]') }}
{{ html()->multiselect('tags[]', $tags->pluck('text', 'id')) ->class('form-control') ->style('width: 100%"') ->value($thread->tags->pluck('id')) ->required() }}
{{--
--}} {{-- {{ html()->label('Channel (Notification will be for admins)')->for('forum_channels_id') }}--}} {{--
--}} {{--
--}} {{-- {{ html()->select('forum_channels_id', $channels->pluck('name', 'id'))--}} {{-- ->class('form-control')--}} {{-- ->style('width: 100%"')--}} {{-- ->required()--}} {{-- }}--}} {{-- --}}{{-- --}} {{-- --}}{{-- --}} {{--
--}}
{!! Form::button(' '.$submitButtonText, ['type' => 'submit', 'class'=>'btn btn-outline-success btn-block']) !!}