@extends('update.update-layout')
@section('content')
@if (file_exists(public_path('logo.png')))
@endif
@if(!$isUpdateAvailable)
Great news! No update available at this time. Your system is up-to-date and running smoothly.
@endif
@if($isRequirementsErrors)
Detected the following problems. Please correct them before proceeding with the update.
@foreach($requirements as $req)
@if(!$req['result'])
- {{$req['errorMessage']}}
@endif
@endforeach
@endif
@if($isUpdateAvailable)
@endif
@endsection