{!! 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
{!! Html::decode(Form::label('note', 'Note')) !!} {{ Form::textarea('note', null, ['rows'=>2, 'cols'=>2, 'class' => 'form-control' . ($errors->has('note') ? ' is-invalid' : '') ])}} @if($errors->has('note'))
{{ $errors->first('note') }}
@endif