with I manage to print in the index view of the delivery notes directory what was sent by the controller, something was wrong when sending the return.
Return Controller
return view('albaranes/index',['errors','NOOOOO']);
Data collection on the blade
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif