@extends('admin.master') @section('title', trans('general.check-update')) @section('content')

@lang('general.check-update')

@lang('admin.update.info.title')

@if ($extra['canUpdate'])
@lang('admin.update.info.available')
@lang('admin.update.info.versions.latest') v{{ $info['latest'] }}
@lang('admin.update.info.versions.current') v{{ $info['current'] }}
@else @if (is_string($error))
{{ trans('admin.update.errors.connection', ['error' => $error]) }}
@else
{{ trans('admin.update.info.up-to-date') }}
@endif
@lang('admin.update.info.versions.current') v{{ $info['current'] }}
@endif

@lang('admin.update.cautions.title')

{!! nl2p(trans('admin.update.cautions.text')) !!}
@endsection