@extends('layouts.admin') @section('title', 'Themes Management') @section('page_title', 'Themes Management') @section('content')

Available Themes

Add New Theme
@forelse($themes as $theme)
{{ $theme->name }}
@if($theme->is_active) Active @else Inactive @endif
Primary: {{ $theme->primary_color }}
Secondary: {{ $theme->secondary_color }}
@empty
No themes found. Create your first theme
@endforelse
@endsection