@extends('admin.layouts.index', ['header' => true, 'nav' => true, 'demo' => true])
@section('css')
@endsection
@section('content')
{{-- Failed --}}
@if (Session::has('failed'))
{{ Session::get('failed') }}
@endif
{{-- Success --}}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
{{-- Support status message --}}
@if (isset($response['support_status_message']) && $response['support_status_message'] != '')
{!! __($response['support_status_message']) !!}
@endif
@if (isset($response))
{{ $response['version'] }}
{{ $response['message'] }}
@if ($response['update'])
{!! $response['notes'] !!}
{{ __('IMPORTANT: Before starting this process, we recommend you to take a backup of your files.') }}
@endif
@endif
@if (isset($response))
@if ($response['license'] == 'Regular License')
@endif
@endif
{{-- Footer --}}
@include('admin.includes.footer')
@endsection