2017-08-26 08:24:55 -04:00
|
|
|
@extends('simple-layout')
|
2015-07-28 15:57:13 -04:00
|
|
|
|
2017-08-26 08:24:55 -04:00
|
|
|
@section('body')
|
2016-12-03 13:35:40 -05:00
|
|
|
|
2018-05-28 05:33:38 -04:00
|
|
|
<div class="container small">
|
2017-08-26 08:24:55 -04:00
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2019-01-31 15:37:12 -05:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$book,
|
2019-02-17 12:52:42 -05:00
|
|
|
$book->getUrl('/delete') => [
|
|
|
|
'text' => trans('entities.books_delete'),
|
|
|
|
'icon' => 'delete',
|
|
|
|
]
|
2019-01-31 15:37:12 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card content-wrap auto-height">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.books_delete') }}</h1>
|
|
|
|
<p>{{ trans('entities.books_delete_explain', ['bookName' => $book->name]) }}</p>
|
|
|
|
<p class="text-neg"><strong>{{ trans('entities.books_delete_confirmation') }}</strong></p>
|
|
|
|
|
|
|
|
<form action="{{$book->getUrl()}}" method="POST" class="text-right">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="DELETE">
|
|
|
|
<a href="{{$book->getUrl()}}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 07:40:04 -04:00
|
|
|
<button type="submit" class="button">{{ trans('common.confirm') }}</button>
|
2019-01-31 15:37:12 -05:00
|
|
|
</form>
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2015-07-28 15:57:13 -04:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|