{{-- resources/views/errors/api.blade.php --}} @extends('layouts.app') @section('title', 'API Error') @section('content')

API Connection Error

Unable to connect to server

Status Code: {{ $status ?? 'Unknown' }}

Error Message: {{ $error ?? 'API connection failed' }}

@if(isset($errors) && count($errors) > 0)
Details:
    @foreach($errors as $errorMsg)
  • {{ $errorMsg }}
  • @endforeach
@endif

If this error persists, please contact the system administrator.

@endsection