@extends('simple-layout') @section('body')
@include('settings.navbar', ['selected' => 'maintenance'])

{{ trans('settings.recycle_bin_restore') }}

{{ trans('settings.recycle_bin_restore_confirm') }}

{!! csrf_field() !!} {{ trans('common.cancel') }}
@if($deletion->deletable instanceof \BookStack\Entities\Models\Entity)
{{ trans('settings.recycle_bin_restore_list') }}
@if($deletion->deletable->getParent() && $deletion->deletable->getParent()->trashed())

{{ trans('settings.recycle_bin_restore_deleted_parent') }}

@endif @include('settings.recycle-bin.deletable-entity-list', ['entity' => $deletion->deletable]) @endif
@stop