@extends('layouts.app') @section('page-title')

{{ $pageTitle }}

@endsection @push('head-script') @endpush @section('content')
{{ $pageTitle }}
@include('sections.admin_setting_menu')
@if(isset($lastVersion))

@lang('modules.update.updateManual')

Step 2

{{ csrf_field() }}

Step 3

@lang('modules.update.updateFiles')

    @foreach (\Illuminate\Support\Facades\File::files($updateFilePath) as $key=>$filename)
  • {{ \Illuminate\Support\Facades\File::basename($filename) }}
  • @endforeach
@else
You have latest version of this app.
@endif
@endsection @push('footer-script') @endpush