2018-08-27 09:18:09 -04:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
2019-02-03 08:45:45 -05:00
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2019-02-03 08:45:45 -05:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$shelf,
|
2019-02-17 12:52:42 -05:00
|
|
|
$shelf->getUrl('/delete') => [
|
|
|
|
'text' => trans('entities.shelves_delete'),
|
|
|
|
'icon' => 'delete',
|
|
|
|
]
|
2019-02-03 08:45:45 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.shelves_delete') }}</h1>
|
|
|
|
<p>{{ trans('entities.shelves_delete_explain', ['name' => $shelf->name]) }}</p>
|
|
|
|
|
|
|
|
<div class="grid half">
|
|
|
|
<p class="text-neg">
|
|
|
|
<strong>{{ trans('entities.shelves_delete_confirmation') }}</strong>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<form action="{{ $shelf->getUrl() }}" method="POST" class="text-right">
|
2018-08-27 09:18:09 -04:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="DELETE">
|
2018-09-16 14:34:09 -04:00
|
|
|
|
|
|
|
<a href="{{ $shelf->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button">{{ trans('common.confirm') }}</button>
|
2018-08-27 09:18:09 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
2019-02-03 08:45:45 -05:00
|
|
|
|
|
|
|
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|