@extends('admin.layouts.app') @section('title', $brand->exists ? 'Edit Brand' : 'Add Brand') @section('content')
Brand details
@csrf @if($brand->exists) @method('PUT') @endif
@error('name')
{{ $message }}
@enderror
@if($brand->logo)
{{ $brand->name }} Current logo
@endif @error('logo')
{{ $message }}
@enderror
Lower number = appears first. 0 = auto.
Cancel @if($brand->exists) @csrf @method('DELETE') @endif
@endsection