@extends('layouts.app') @section('content') {{-- Page Header --}} {{-- Main Card --}}
{{-- Left: Thumbnail --}}
{{ __('Brand Logo') }}
@if ($brand->thumbnail && $brand->thumbnail->src) {{ $brand->name }} @else
{{ __('No logo uploaded') }}
@endif
{{-- Right: Details --}}
{{-- Brand Name --}}
{{ __('Brand Name') }}

{{ $brand->name }}

{{-- Created At --}}
{{ __('Created At') }}

{{ $brand->created_at->timezone(config('app.timezone'))->format('d M Y \a\t H:i') }}

{{-- Updated At (optional, for consistency) --}}
{{ __('Updated At') }}

{{ $brand->updated_at->format('d M Y \a\t H:i') }}

{{-- Action Buttons (Bottom Right) --}}
@endsection