表格代码
{!!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()!!}
显示形式图片enter image description here
字体页显示css代码enter image description here
答案 0 :(得分:1)
使用{!! $text !!}
而不是{{ $text }}
在视图中显示您的数据。