@extends('layouts.admin') @section('title', isset($brand) ? 'Edit Brand' : 'Add Brand') @section('page_title', isset($brand) ? 'Edit Brand' : 'Add New Brand') @section('content')
{{ isset($brand) ? 'Edit Brand Information' : 'Brand Details' }}
@csrf @if(isset($brand)) @method('PUT') @endif
@error('name')
{{ $message }}
@enderror
@error('slug')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Allowed formats: JPG, PNG, GIF, SVG, WebP. Max size: 2MB @error('logo')
{{ $message }}
@enderror @if(isset($brand) && $brand->logo)
{{ $brand->name }} Current logo (upload a new one to replace)
@endif
is_active : 1) == 1 ? 'checked' : '' }}>
Cancel
Quick Info
@if(isset($brand))
Brand ID

#{{ $brand->id }}

Products

{{ $brand->products->count() }}

Created

{{ $brand->created_at->format('M d, Y') }}

Last Updated

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

@else

Fill in the form to create a new brand

@endif
@endsection