@extends('admin.layouts.app')
@section('title', 'Edit Car Brand')
@section('content')
{{-- Breadcrumb / Header --}}
ID: {{ $carBrand->id }}
{{ $carBrand->created_at?->format('d M Y') }}
@if($errors->any())
Please fix the following errors:
@foreach($errors->all() as $error)- {{ $error }}
@endforeach
@endif
@endsection