1 @extends('simple-layout')
4 <div class="container small">
7 @include('settings.navbar', ['selected' => 'maintenance'])
10 <div class="card content-wrap auto-height">
11 <h2 class="list-heading">{{ trans('settings.recycle_bin_permanently_delete') }}</h2>
12 <p class="text-muted">{{ trans('settings.recycle_bin_destroy_confirm') }}</p>
13 <form action="{{ url('/settings/recycle-bin/' . $deletion->id) }}" method="post">
14 {!! method_field('DELETE') !!}
16 <a href="{{ url('/settings/recycle-bin') }}" class="button outline">{{ trans('common.cancel') }}</a>
17 <button type="submit" class="button">{{ trans('common.delete_confirm') }}</button>
20 @if($deletion->deletable instanceof \BookStack\Entities\Models\Entity)
22 <h5>{{ trans('settings.recycle_bin_destroy_list') }}</h5>
23 @include('settings.recycle-bin.deletable-entity-list', ['entity' => $deletion->deletable])