{!! Form::label('title', trans('general.nombre')) !!} {!! Form::text('title', null, ['class' => 'form-control']) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::label('comment', 'Descripción') !!} {!! Form::text('comment', null, ['class' => 'form-control']) !!} @if ($errors->has('comment')) {{ $errors->first('comment') }} @endif
{!! Form::label('url','URL') !!} {!! Form::text('url', null, ['class' => 'form-control', 'placeholder' => 'http://...']) !!} @if ($errors->has('url')) {{ $errors->first('url') }} @endif
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}