{!! Html::decode(Form::label('title', 'Title * ')) !!} {{ Form::text('title', null, [ 'class' => 'form-control' . ($errors->has('title') ? ' is-invalid' : '') ])}} @if($errors->has('title'))
{{ $errors->first('title') }}
@endif