@extends('layouts.app')
@section('content')
Image {{ $image->id }}
{!! Form::open([
'method'=>'DELETE',
'url' => ['images', $image->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete Image',
'onclick'=>'return confirm("Confirm delete?")'
));!!}
{!! Form::close() !!}
| ID | {{ $image->id }} |
| Alt | {{ $image->alt }} |
|---|
| Path | {{ $image->path }} |
@endsection