{!! 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('document', trans('general.documento')) !!} {!! Form::file('document') !!} @if ($errors->has('document')) {{ $errors->first('document') }} @endif
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}