@extends('layouts/layoutMaster')
@section('title', 'Products')
@section('content')
@if (session()->has('errors') && session('errors')->has('error'))
{{ session('errors')->first('error') }}
@endif
@if (session('success'))
{{ session('success') }}
@endif
@livewire('product-list')
@endsection
@section('page-script')
@endsection