@extends('layouts/contentLayoutMaster') @section('title', __('locale.menu.Update Application')) @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::get('update_required'))

Before update, please take a backup you're all files and database.

Your are currently running on Ultimate SMS {{ config('app.version') }} To upgrade your application, please download the latest build from codecanyon.net , then you can find the upgrade package located at downloaded folder called 3.*.*_update.zip, upload it using the form below.

@if(function_exists('ini_get')) @if((int)ini_get('post_max_size') < 120) Your post_max_size value is: {{ ini_get('post_max_size') }}. Please increase your limit to minimum 120M.
@else Please make sure the upgrade package file size does not exceed the following upload limit settings. Otherwise, your update will not work:

post_max_size 256M
@endif @if((int)ini_get('upload_max_filesize') < 120) Your upload_max_filesize value is: {{ ini_get('upload_max_filesize') }}. Please increase your limit to minimum 120M.
@else upload_max_filesize 256M
@endif

@else

Please make sure the upgrade package file size does not exceed the following upload limit settings. Otherwise, your update will not work:

post_max_size 256M
upload_max_filesize 256M

@endif
@csrf
@error('purchase_code')
{{ $message }}
@enderror
@error('update_file')

{{ $message }}

@enderror @if(Session::get('version'))

Please upload only {{Session::get('version')}}_update.zip file

@endif
@if (phpversion() < "8.2.0") @else @endif
@else

Your are currently running on Ultimate SMS {{ config('app.version') }}

CONGRATULATION!!! You are using latest version


Check for Updates @endif
@endsection @section('page-script') @endsection