{!! Form::label('title', trans('general.nombre')) !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
{!! Form::label('url','URL') !!}
{!! Form::text('url', null, ['class' => 'form-control', 'placeholder' => 'http://...']) !!}
@if ($errors->has('url'))
{{ $errors->first('url') }}
@endif