Upload JPG, PNG, WEBP, GIF, or SVG up to 2MB.
@error('logo')
{{ $message }}
@enderror
@error('logo_url')
{{ $message }}
@enderror
@php
$rawLogo = old('logo_url', $brand->logo_path);
$logoPreviewSrc = null;
if (! empty($rawLogo)) {
$logoPreviewSrc = str_starts_with((string) $rawLogo, 'http://') || str_starts_with((string) $rawLogo, 'https://')
? $rawLogo
: asset((string) $rawLogo);
}
@endphp
@if ($logoPreviewSrc)
@endif