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:
font page display with CSS code:
Display your data in view with {!! $text !!}
not with {{ $text }}
.