@extends('Admin.Layout.master') @section('content') @component('Components.demoWarning') @endcomponent
{{_t('settings.Themes')}} {{ $themes->first()->getRegistry()['name'] }}
{{--
--}}

{{_t('settings.Upload_Theme')}}

{{_t('settings.upload_text')}}

{{_t('settings.NOTE')}}:{{_t('settings.NOTE_text')}}

@forelse(collect($themes)->chunk(4) as $themeSet)
@foreach($themeSet as $theme)

{{ $theme->getRegistry()['name'] }}

@if(!$theme->themeId) {{_t('settings.Install')}} {{_t('settings.Uninstall')}} {{-- @else--}} {{-- {{_t('settings.Uninstall')}}--}} @endif
{{ $theme->getRegistry()['name'] }}
{{ $theme->getRegistry()['version'] }}
@if(isset($theme->getRegistry()['layouts']))
{{_t('settings.Pick_layouts')}}
@forelse($theme->getRegistry()['layouts'] as $layout)
@empty
{{_t('settings.No_Layouts')}}
@endforelse
@endif
@endforeach
@empty
{{_t('settings.sorry_no_theme')}} !
@endforelse
@endsection