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