@extends('admin.layout') @section('title') Edit the Product @endsection @section('content')

Edit {{ $product->name }} product

@if(session()->has('success'))
@endif @if(session()->has('errorMessage'))
@endif @include('admin.products.form', ['action' => 'products.update'])
@endsection @section('pageScripts') @endsection