@extends('layouts.admin') @section('page-title', 'Brands') @section('content')
{{-- Page Header --}}

All Brands

You have total {{ $brands->total() }} Brands

{{-- Table --}}

Brands

@forelse($brands as $index => $brand) @empty @endforelse
# Title Logo Status Options
{{ $brands->firstItem() + $index }} {{ $brand->name }} @if($brand->logo) {{ $brand->name }} @else
@endif
@csrf
@csrf @method('DELETE')

No brands yet

Add your first brand using the form

@if($brands->hasPages())
{{ $brands->links() }}
@endif
{{-- Add Brand Form --}}

Add Brand

@csrf
@error('title')

{{ $message }}

@enderror

Leave blank to auto-generate from title

@error('logo')

{{ $message }}

@enderror
@error('banner')

{{ $message }}

@enderror
@endsection