@extends('admin.layouts.app') @section('title', 'Brand') @section('content')

{{ __('Brand') }}

Edit Brand

@csrf @method('PUT')
@include('admin.partials.form-errors', array('field' => 'name'))

Brands

@foreach($brands as $c) @endforeach
Name
{{$c->name}}
@endsection