@extends('panel.layout.app')
@section('title', __('Update'))
@section('content')
@if (Auth::user()->type == 'admin')
@if ($app_is_not_demo)
@if (getServerMemoryLimit() < 64 && getServerMemoryLimit() != -1)
{{ __('Warning') }}
{{ __('Your server memory_limit is') }}
{{ getServerMemoryLimit() }}M.
{{ __('It should be minimum') }} 64M.
{{ __('If you do not set the required minimum value, you may get possible errors during the update.') }}
@endif
{{ __('A newer version of') }} {{ $setting->site_name }}
{{ __('is available.') }}
{{ $setting->script_version }}
@if (getServerMemoryLimit() < 64 && getServerMemoryLimit() != -1)
@else
@endif
@endif
{{ $setting->site_name }} {{ __('is up to date') }}
{{ __('Change-log') }}
@endif
@endsection
@section('script')
@auth()
@endauth
@endsection