@extends('admin.layouts.app') @section('content')
@if (session('success'))
{{ session('success') }}
@endif
@if (isset($themes)) @foreach ($themes as $theme) @php $theme_extras = json_decode($theme->theme_extras); @endphp
@foreach ($theme_extras as $colours)
{{$colours}}
{{ $theme->theme_name . ' ' . $colours }}
{{--

Some quick example text to build on the card title and make up the bulk of the card's content.

--}} @if ($settings->site_theme == $theme->theme_dirname && $settings->site_theme_alt == strtolower($colours)) Activated @else
@csrf
@endif
@endforeach
@endforeach @endif
@endsection