@if ($errors->has('nombre')) {{ $errors->first('nombre') }} @endif
{{--
@if ($errors->has('slug')) {{ $errors->first('slug') }} @endif
--}}
@if ($errors->has('descripcion')) {{ $errors->first('descripcion') }} @endif
@if ($errors->has('perfil')) {{ $errors->first('perfil') }} @endif

Adjuntar documento

{{--
{!! Form::label('nombre', 'Nombre:') !!} {!! Form::text('nombre', null, ['class' => 'form-control']) !!}
{!! Form::label('slug', 'Slug:') !!} {!! Form::text('slug', null, ['class' => 'form-control']) !!}
{!! Form::label('descripcion', 'Descripcion:') !!} {!! Form::text('descripcion', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel
--}}