@extends('admin.layouts.app') @section('title', 'Add Car Brand') @section('content')
{{-- Breadcrumb / Header --}}

Add New Car Brand

Car Brands / Add New
@if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- LEFT: Form --}}
{{-- Brand Name --}}
@error('name')
{{ $message }}
@enderror
{{-- Type --}}
@error('type')
{{ $message }}
@enderror

{{-- Logo Upload --}}
Click to upload logo
PNG, JPG, WebP — max 2MB
@error('logo')
{{ $message }}
@enderror

{{-- Sort Order + Active --}}
Lower = shown first
Status
Visible to users
{{-- Description --}}
{{-- Buttons --}}
{{-- RIGHT: Live Preview --}}
Live Preview
{{-- Logo Preview --}}
{{-- Name --}}
Brand Name
brand-name
{{-- Badges --}}
Popular Active
@if(false){{-- spacer --}}@endif
No description added
{{-- Tips --}}
Tips
  • Use a square logo (1:1 ratio) for best results
  • PNG with transparent background looks best
  • Sort order 0 appears first in listings
  • Inactive brands are hidden from customers
@endsection