@if ($theme) {!! Form::open(['url' => 'admin/themes/delete/' . $theme->id]) !!}

You are about to delete the theme titled {{ $theme->name }}. This is not reversible.

@if ($theme->userCount)

The {{ $theme->userCount }} user{{ $theme->userCount == 1 ? ' who is' : 's who are' }} using this theme will be automatically changed to the default theme {!! isset($defaultTheme) ? '' . $defaultTheme->name . '.' : 'which is not currently set.' !!}

@endif @if ($theme->is_default)

This is currently the default theme. Any visitor or user using the default theme will instead look at your website as if it didn't have the Theme Manager installed.

@endif

Are you sure you want to delete {{ $theme->name }}?

{!! Form::submit('Delete Theme', ['class' => 'btn btn-danger']) !!}
{!! Form::close() !!} @else Invalid post selected. @endif