@extends('user::layouts.backend-master') @section('breadcrumb_title', 'Themes List') @section('content')

{{ __('translate.Theme Demo') }}

{{ __('translate.Create Theme') }}
@if (count($themes) > 0) @foreach ($themes as $theme_name => $theme_info)
@if (file_exists(public_path('backend/assets/img/theme/' . $theme_name . '.png'))) {{ $theme_info['name'] ?? $theme_name }} @else {{ $theme_info['name'] ?? $theme_name }} @endif

{{ $theme_info['name'] ?? ucfirst($theme_name) }}

@if ($active_theme == $theme_name) {{ __('translate.Active') }} @endif

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

{{ __('translate.Version') }}: {{ $theme_info['version'] ?? '1.0.0' }} {{ __('translate.Author') }}: {{ $theme_info['author'] ?? 'Unknown' }}
@csrf
@if ($active_theme != $theme_name)
@csrf @method('DELETE')
@endif
@endforeach @else

No Themes Found

You have not created any themes yet. Click the button below to create your first theme.

Create Theme
@endif
@endsection @push('scripts') @endpush