30 lines
705 B
PHP
30 lines
705 B
PHP
|
|
||
|
@extends('cms.cms-master')
|
||
|
@section('main_content')
|
||
|
<h1>Are You sure you want to delete this item ?</h1>
|
||
|
|
||
|
<h2>title :<b> {{$item[0] ->title}}</b></h2>
|
||
|
<p>Url : <b>{{$item[0]->url}}</b></p>
|
||
|
<img width="300" src="{{asset('images/' . $item[0]->image)}}" alt="">
|
||
|
<br>
|
||
|
<br>
|
||
|
<br>
|
||
|
<div class="row">
|
||
|
|
||
|
<div class="col-md-6">
|
||
|
|
||
|
<form action="{{url('cms/categories' . '/'.$item[0] ->id)}}" method="post">
|
||
|
{{csrf_field()}}
|
||
|
{{method_field('DELETE')}}
|
||
|
{{-- <input type="hidden" name="_method" value="DELETE"> --}}
|
||
|
<a href="{{url('cms/categories')}}" class="btn btn-default">Cancel</a>
|
||
|
<input type="submit" name="submit" value="Delete" class="btn btn-danger">
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
@endsection
|