@extends(config('seo.layout')) @section('header') Images Library @endsection @section('content')
@csrf
@if ($errors->has('image')) @endif
@if ($images->first())
@foreach ($images as $image) @endforeach
Path Action
{{ request()->root() . $image->path }}
@csrf {{ method_field('DELETE') }}
{!! $images->render() !!}
@endif
@endsection @section('scripts') @endsection