{{-- 後端送的 validate 錯誤訊息 --}} @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif {{-- 訊息模板,可以在 route()->width() 中給予要顯示的訊息 @see Status::class --}}
@if (session('statusSuccess'))
{{ session('statusSuccess') }}
@elseif (session('statusFails'))
{{ session('statusFails') }}
@endif