@extends('user::layouts.backend-master') @section('breadcrumb_title', 'Show Theme') @section('content') @section('content')
{{ $themeInfo['name'] ?? ucfirst($theme) }}

{{ $themeInfo['name'] ?? ucfirst($theme) }}

@if (Theme::getActive() == $theme) {{ __('translate.Active') }} @endif

{{ $themeInfo['description'] ?? 'No description available' }}

{{ __('translate.Version') }}: {{ $themeInfo['version'] ?? '1.0.0' }}
{{ __('translate.Author') }}: {{ $themeInfo['author'] ?? 'Unknown' }}
@if (isset($themeInfo['url']) && $themeInfo['url'])
{{ __('translate.Website') }}: {{ $themeInfo['url'] }}
@endif
@if (Theme::getActive() != $theme)
@csrf
@csrf @method('DELETE')
@endif {{ __('translate.Back to Themes') }}
@if (isset($themeInfo['required_plugins']) && count($themeInfo['required_plugins']) > 0)

{{ __('translate.Required Plugins') }}

    @foreach ($themeInfo['required_plugins'] as $plugin)
  • {{ $plugin }}
  • @endforeach
@endif
@endsection @push('scripts') @endpush