@extends('layouts.admin') @section('title') Admin | Banners @endsection @section('content')
@csrf
@php $logo = getKeyValue('logo'); $hasLogoImage = !empty($logo->photo) && !empty($logo->photo->file_path); $imgLogoSrc = $hasLogoImage ? (Str::startsWith($logo->photo->file_path, ['http://','https://']) ? $logo->photo->file_path : Storage::url($logo->photo->file_path)) : ''; $brand = getKeyValue('cover'); $hasBrandImage = !empty($brand->photo) && !empty($brand->photo->file_path); $imgBrandSrc = $hasBrandImage ? (Str::startsWith($brand->photo->file_path, ['http://','https://']) ? $brand->photo->file_path : Storage::url($brand->photo->file_path)) : ''; @endphp
Event Logo
PNG recommended. Transparent background preferred.
Brand Cover
Drag & drop a wide cover image
Suggested size: 1600×600 or similar aspect ratio.
Theme Color
{{ getKeyValue('color')->value ?? '#0D6EFD' }}
This color accents the UI and outlines the dropzones for a quick preview.
@endsection