@extends('layouts.admin.app') @section('content')
@include('layouts.errors-and-messages') @if(!$brands->isEmpty())

Brands

@foreach ($brands as $brand) @endforeach
Name Actions
{{ $brand->name }}
{{ csrf_field() }}
Edit
{{ $brands->links() }}
@else

No brand created yet. Create one!

@endif
@endsection