@extends('layouts.app') @section('content')
{{ csrf_field() }}
@include ('layouts.errors')
Products
@if (session('status')) @endif
    @forelse ($products as $product)
  • {{$product['name']}}
  • @empty

    There are no products yet. Include one with the form above.

    @endforelse
@endsection