@extends('layouts.admin') @section('title', 'Folder: ' . $folder->name) @section('styles') @endsection @section('content')
Back to Root
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@endif

Images in "{{ $folder->name }}"

@forelse($images as $image)
@csrf @method('DELETE')
{{ $image->original_name }} {{ Str::limit($image->original_name, 15) }}
@empty

No images in this folder.

@endforelse
@endsection @section('scripts') @endsection