@extends('layouts.errors')
@section('http_error')
503 | Service Unavailable
@endsection
@section('imports')
{{-- Bootstrap JS --}}
{{-- FontAwesome para iconos --}}
@endsection()
@section('styles')
@endsection
@section('floating-mark')
@endsection
@section('content')
@php
$service_url = str_replace(["https://", "http://"], ["", ""], config('app.url'));
$server_image = \App\Models\User::first()->value('profile_photo') ?? asset('images/only_harsi.png');
$header_message = str_replace(
':system',
"$service_url",
__('errors')['503']['system_status_description']
)
@endphp
{{-- Header --}}
{!! $header_message !!}
{{-- Hotel Logo --}}

{{-- Apologizes --}}
{!! __('errors')['503']['apologizes'] !!}
@endsection
@section('footer')
@include('shared.components.footer.oposite-footer', ["display_social_media" => true])
@endsection