@if(isset($quejaRespuesta))
@foreach ($quejaRespuesta->designaciones as $designacion)
@if ($errors->has('numero_caja'))
{{ $errors->first('numero_caja') }}
@endif
@if ($errors->has('designacion_producto'))
{{ $errors->first('designacion_producto') }}
@endif
@if ($errors->has('cantidad_facturada'))
{{ $errors->first('cantidad_facturada') }}
@endif
@if ($errors->has('cantidad_recibida'))
{{ $errors->first('cantidad_recibida') }}
@endif
@if ($errors->has('cantidad_esperada'))
{{ $errors->first('cantidad_esperada') }}
@endif
@endforeach
@else
@if ($errors->has('numero_caja'))
{{ $errors->first('numero_caja') }}
@endif
@if ($errors->has('designacion_producto'))
{{ $errors->first('designacion_producto') }}
@endif
@if ($errors->has('cantidad_facturada'))
{{ $errors->first('cantidad_facturada') }}
@endif
@if ($errors->has('cantidad_recibida'))
{{ $errors->first('cantidad_recibida') }}
@endif
@if ($errors->has('cantidad_esperada'))
{{ $errors->first('cantidad_esperada') }}
@endif
@endif