@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ config('app.name') }} {{ __('Software Upgrade') }}

@csrf
{{ __('Current Installed Software Version') }}: {{ $current_version }}
@if ($latest_version['status'])
{{ __('New') }} {{ $latest_version['version'] }} {{ __('version is available for download') }}.
{{ __('Warning!') }} {{ __('Always backup your database and script files before any upgrade') }}.
{{ config('app.name') }} {{ __('was successfully updated to the latest version') }}!
@else
{{ __('You have the latest version installed') }}!
@endif
@endsection @section('js') @endsection