6 lines
154 B
PHP
6 lines
154 B
PHP
@if($errors->any())
|
|
@foreach ($errors->all() as $error)
|
|
<div class="bg-red-600 text-white">错误:{{ $error }}</div>
|
|
@endforeach
|
|
@endif
|