@extends('admin.layouts.master')
@section('title', 'Themes - Admin')
@section('maincontent')
@component('components.breadcumb',['thirdactive' => 'active'])
@slot('heading')
{{ __('adminstaticword.Themes') }}
@endslot
@slot('menu1')
{{ __('adminstaticword.Themes') }}
@endslot
@slot('button')
@php
$key = \DB::table('api_keys')
->where('id', '2')
->first()
@endphp
@if(Module::has('Blizzard'))
@if(!Module::find('Blizzard')->isEnabled())
{{ __('Please active blizzard from configure')}}
@endif
@endif
@if(Module::has('Blizzard'))
@if(env('MIX_THEME_FOLDER') == '' || !$key)
{{__("Please configure blizzard theme before using it.")}}
@endif
@endif
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
@endforeach
@endif
{{ __('Are You Sure ?')}}
{{ __('Do you really want to delete')}} {{ __('Blizzard') }} ? {{ __('This process cannot be undone.')}}
@endsection