@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ __('Slider Images') }}
@csrf Upload Image:
@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($images as $image) @empty @endforelse
Image Image Order* Visible Uploaded By Action**
@csrf
@if($image->visible) @else @endif {{$image->uploadedBy->name}} {{$image->uploadedBy->surname}}
@csrf
No images available. Upload images above. Image size should be 900 pixels wide and 300 pixels high.
{{ $images->links() }} * 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.
** Delete Image

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