@extends('back.layouts.app', ['title' => $title])
@section('beforeHeadClose')
@endsection
@section('content')
{{ $album_name }} Gallery
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $errmsg)
- {{ $errmsg }}
@endforeach
@endif
@forelse($images as $image)
@if ($image->isBeforeAfterHaveTwoImages == 0)
@else
Before
After
@endif
@empty
There is no image found in the album.
@endforelse
@endsection('content')
@section('beforeBodyClose')
@include('back.gallery.gallery_js')
@endsection