@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