@extends('layouts.admin.app', ['page' => $menuAdmin['system_updates']['active'] ?? ""]) @section('title', __('labels.system_updates')) @section('header_data') @php $page_title = __('labels.system_updates'); $page_pretitle = __('labels.list'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('admin.dashboard')], ['title' => __('labels.system_updates'), 'url' => null], ]; @endphp @section('admin-content')
@if (session('update_log'))
{{ __('labels.latest_update_log') }} @if(session('update_version')) (v{{ session('update_version') }}) @endif @if(session('update_id')) #{{ session('update_id') }} @endif
{{ session('update_log') }}
@endif

{{ __('labels.system_updates') }}

{{ __('labels.current_version') }}: v{{ $currentVersion ?? config('app.version') }}
@if($canUpdate)
@csrf
{{ __('labels.update_zip_help') }}
{{ __('labels.live_update_log') }}
{{ __('labels.starting') }}

                        
@else
{{ __('labels.no_update_permission') }}
@endif

{{ __('labels.update_history') }}

@endsection @push('scripts') @endpush