@extends('admin.layout') @section('title') Create new Product @endsection @section('content')

Create new Product

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