'How can I show bullets when escaping text in Laravel?

I have this code:

   <div class="form-group">
  {!! Form::label('description','Text till egen sida(max 170 ord)') !!} {!! Form::textarea('description', null, array('class' => 'wysiwyg-simple')) !!}
  <span class="help-block">Denna text visas på er företagssida.</span>
</div>

And this one in another line:

<div class="row">
    <div class="col-md-12">
      {!! $foretag->description !!}
    </div>
  </div>

The user can write a text in a text area but when they choose an unordered list, then the bullets doesn't show. I hope you understand what I mean. Thank you

so it shows



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source