@extends('layouts.admin') @section('title', 'Manage Images') @section('content')

Manage Logo & Banners

@if(session('success'))
{{ session('success') }}
@endif
@csrf


Add New Banner

@csrf

Existing Banners

@foreach($banners as $banner)
{{ $banner->title }}
{{ $banner->title }}
{{ $banner->url }}

Type: {{ ucfirst($banner->type) }}

Status: {{ $banner->active ? 'Active' : 'Inactive' }}

@csrf active ? 'checked' : '' }}>
@csrf @method('DELETE')
@endforeach
@endsection