@extends('layouts.admin') @section('styles') @endsection @section('content')
Edit {{$gallery->name}}
@if (session('success'))
{!! session('success') !!}
@endif @if (session('error'))
{!! session('error') !!}
@endif @if ($errors->has('name')) {{ $errors->first('name') }} @endif @if ($errors->has('type')) {{ $errors->first('type') }} @endif @forelse($gallery->images as $image) @empty @endforelse
Preview Heading Image Order* Visible** Uploaded By Action***
{{$image->heading}}
@csrf
@if($image->visible) @else @endif {{$image->uploadedBy->name}} {{$image->uploadedBy->surname}}
@csrf
   
No images available.
- Upload by clicking on the upload image "" icon.
- Image size should be 800 pixels wide and 600 pixels high, thumbnails are generated automatically.
@if(count($gallery->images))
* Edit the order (number) where you want the image to appear, then click on the "" icon to update. The rest will re-order after it.
** Click icon to change visibility: (Visble)    (NOT Visble)
*** Edit Image    Delete Image

NOTES: Image size: 800(w)x600(h) in pixels (IMPORTANT).
Image type: jpg or png.
Delete can not be undone.
@endif
@endsection @section('javascript') @endsection