Search code examples
phplaravel-5tinymce

Insert data use tinymce in laravel. but display showing css style. how to remove css style in display


Form Code

{!!Form::open(['url'=>'/about/save','method'=>'POST','enctype'=>'multipart/form-data'])!!}
    <div class="form-group">
        <label for="exampleFormControlInput1">add about</label>
        <textarea type="text" class="form-control" id="exampleFormControlInput1" name="text"></textarea>
        
        {{$errors->has('text')?$errors->first('text'):''}}
        
      </div>
        
      <div class="form-group">
         <button type="submit" class="btn btn-primary">Save</button>
    
      </div>
     
    {!!Form::close()!!}

display form image: enter image description here

font page display with CSS code: enter image description here


Solution

  • Display your data in view with {!! $text !!} not with {{ $text }}.