@extends('admin::layouts.master')
@section('title','E-SHOP || Product Create')
@section('content')
@include('product::partials.form', [
'product' => $product ?? [],
'categories' => $categories ?? [],
'tags' => $tags ?? [],
'brands' => $brands ?? [],
'attributes' => $attributes ?? [],
])
@endsection
@push('styles')