Index: KernelRecordsMVC.Web/Views/Admin/CreateProduct.cshtml
===================================================================
--- KernelRecordsMVC.Web/Views/Admin/CreateProduct.cshtml	(revision 1dcdb2cfb56ccfd57525e0cd573a289cead0870b)
+++ KernelRecordsMVC.Web/Views/Admin/CreateProduct.cshtml	(revision 6886d95c0595c53dde86bf06e0c23d101ba2c777)
@@ -35,10 +35,18 @@
 
 
-    <div class="admin-form-layout">
-
-
-        <!-- =================================================
-             FORM
-             ================================================= -->
+    <!-- =================================================
+         FORM
+         ================================================= -->
+
+    <form asp-action="CreateProduct"
+          method="post">
+
+        @Html.AntiForgeryToken()
+
+
+        <div asp-validation-summary="ModelOnly"
+             class="admin-validation">
+        </div>
+
 
         <section class="admin-form-card">
@@ -55,123 +63,90 @@
 
 
-            <form asp-action="CreateProduct"
-                  method="post">
-
-                @Html.AntiForgeryToken()
-
-
-                <div asp-validation-summary="ModelOnly"
-                     class="admin-validation">
-                </div>
-
-
-                <!-- RELEASE -->
+            <!-- RELEASE -->
+
+            <div class="admin-form-field">
+
+                <label asp-for="ReleaseId">
+                    Release
+                </label>
+
+                <select asp-for="ReleaseId">
+
+                    <option value="">
+                        Select a release
+                    </option>
+
+                    @foreach (var release in ViewBag.Releases)
+                    {
+                        <option value="@release.ReleaseId">
+
+                            @release.Title
+                            (@release.ReleaseDate.ToString("yyyy"))
+
+                        </option>
+                    }
+
+                </select>
+
+                <span asp-validation-for="ReleaseId"
+                      class="admin-field-error">
+                </span>
+
+                <small>
+                    Select the release this physical
+                    product belongs to.
+                </small>
+
+            </div>
+
+
+            <div class="admin-form-row">
+
+
+                <!-- FORMAT -->
 
                 <div class="admin-form-field">
 
-                    <label asp-for="ReleaseId">
-                        Release
+                    <label asp-for="Format">
+                        Format
                     </label>
 
-                    <select asp-for="ReleaseId">
+                    <select asp-for="Format"
+                            asp-items="Html.GetEnumSelectList<KernelRecordsMVC.Domain.Enums.ProductFormat>()">
 
                         <option value="">
-                            Select a release
+                            Select format
                         </option>
 
-                        @foreach (var release in ViewBag.Releases)
-                        {
-                            <option value="@release.ReleaseId">
-
-                                @release.Title
-                                (@release.ReleaseDate.ToString("yyyy"))
-
-                            </option>
-                        }
-
                     </select>
 
-                    <span asp-validation-for="ReleaseId"
+                    <span asp-validation-for="Format"
                           class="admin-field-error">
                     </span>
 
-                    <small>
-                        Select the release this physical
-                        product belongs to.
-                    </small>
-
                 </div>
 
 
-                <div class="admin-form-row">
-
-
-                    <!-- FORMAT -->
-
-                    <div class="admin-form-field">
-
-                        <label asp-for="Format">
-                            Format
-                        </label>
-
-                        <select asp-for="Format"
-                                asp-items="Html.GetEnumSelectList<KernelRecordsMVC.Domain.Enums.ProductFormat>()">
-
-                            <option value="">
-                                Select format
-                            </option>
-
-                        </select>
-
-                        <span asp-validation-for="Format"
-                              class="admin-field-error">
-                        </span>
+                <!-- PRICE -->
+
+                <div class="admin-form-field">
+
+                    <label asp-for="Price">
+                        Price
+                    </label>
+
+                    <div class="admin-input-prefix">
+
+                        <span>$</span>
+
+                        <input asp-for="Price"
+                               type="number"
+                               min="0"
+                               step="0.01"
+                               placeholder="0.00" />
 
                     </div>
 
-
-                    <!-- PRICE -->
-
-                    <div class="admin-form-field">
-
-                        <label asp-for="Price">
-                            Price
-                        </label>
-
-                        <div class="admin-input-prefix">
-
-                            <span>$</span>
-
-                            <input asp-for="Price"
-                                   type="number"
-                                   min="0"
-                                   step="0.01"
-                                   placeholder="0.00" />
-
-                        </div>
-
-                        <span asp-validation-for="Price"
-                              class="admin-field-error">
-                        </span>
-
-                    </div>
-
-                </div>
-
-
-                <!-- STOCK -->
-
-                <div class="admin-form-field">
-
-                    <label asp-for="Stock">
-                        Initial Stock
-                    </label>
-
-                    <input asp-for="Stock"
-                           type="number"
-                           min="0"
-                           placeholder="0" />
-
-                    <span asp-validation-for="Stock"
+                    <span asp-validation-for="Price"
                           class="admin-field-error">
                     </span>
@@ -179,100 +154,70 @@
                 </div>
 
-
-                <!-- DESCRIPTION -->
-
-                <div class="admin-form-field">
-
-                    <label asp-for="ProductDescription">
-                        Product Description
-                    </label>
-
-                    <textarea asp-for="ProductDescription"
-                              rows="5"
-                              placeholder="Describe this physical edition..."></textarea>
-
-                    <span asp-validation-for="ProductDescription"
-                          class="admin-field-error">
-                    </span>
-
-                </div>
-
-
-                <!-- ACTIONS -->
-
-                <div class="admin-form-actions">
-
-                    <button type="submit"
-                            class="admin-button primary">
-
-                        Create Product
-
-                    </button>
-
-
-                    <a asp-action="Products"
-                       class="admin-button secondary">
-
-                        Cancel
-
-                    </a>
-
-                </div>
-
-            </form>
+            </div>
+
+
+            <!-- STOCK -->
+
+            <div class="admin-form-field">
+
+                <label asp-for="Stock">
+                    Initial Stock
+                </label>
+
+                <input asp-for="Stock"
+                       type="number"
+                       min="0"
+                       placeholder="0" />
+
+                <span asp-validation-for="Stock"
+                      class="admin-field-error">
+                </span>
+
+            </div>
+
+
+            <!-- DESCRIPTION -->
+
+            <div class="admin-form-field">
+
+                <label asp-for="ProductDescription">
+                    Product Description
+                </label>
+
+                <textarea asp-for="ProductDescription"
+                          rows="5"
+                          placeholder="Describe this physical edition..."></textarea>
+
+                <span asp-validation-for="ProductDescription"
+                      class="admin-field-error">
+                </span>
+
+            </div>
+
+
+            <!-- ACTIONS -->
+
+            <div class="admin-form-actions">
+
+                <button type="submit"
+                        class="admin-button primary">
+
+                    Create Product
+
+                </button>
+
+
+                <a asp-action="Products"
+                   class="admin-button secondary">
+
+                    Cancel
+
+                </a>
+
+            </div>
 
         </section>
 
-
-        <!-- =================================================
-             SIDE INFO
-             ================================================= -->
-
-        <aside class="admin-help-card">
-
-            <span class="admin-eyebrow">
-                PRODUCT CREATION
-            </span>
-
-            <h3>Before you create</h3>
-
-            <div class="admin-help-item">
-
-                <strong>01</strong>
-
-                <p>
-                    A release can only have one product
-                    for each physical format.
-                </p>
-
-            </div>
-
-
-            <div class="admin-help-item">
-
-                <strong>02</strong>
-
-                <p>
-                    Stock can be updated later from
-                    Product Management.
-                </p>
-
-            </div>
-
-
-            <div class="admin-help-item">
-
-                <strong>03</strong>
-
-                <p>
-                    Creating the product will automatically
-                    create a modification record.
-                </p>
-
-            </div>
-
-        </aside>
-
-    </div>
+    </form>
 
 </div>
Index: KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfo.cs
===================================================================
--- KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfo.cs	(revision 1dcdb2cfb56ccfd57525e0cd573a289cead0870b)
+++ KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfo.cs	(revision 6886d95c0595c53dde86bf06e0c23d101ba2c777)
@@ -15,5 +15,5 @@
 [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
 [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+595d2e58cf322a776ba1d3cedcb86e9bb2ee8093")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1dcdb2cfb56ccfd57525e0cd573a289cead0870b")]
 [assembly: System.Reflection.AssemblyProductAttribute("KernelRecordsMVC.Web")]
 [assembly: System.Reflection.AssemblyTitleAttribute("KernelRecordsMVC.Web")]
Index: KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfoInputs.cache
===================================================================
--- KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfoInputs.cache	(revision 1dcdb2cfb56ccfd57525e0cd573a289cead0870b)
+++ KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.AssemblyInfoInputs.cache	(revision 6886d95c0595c53dde86bf06e0c23d101ba2c777)
@@ -1,1 +1,1 @@
-c4091efdfb2ea8a6937ee7bd732f81d58fc7a86e988c5b54f31b2dcc4f2f33d7
+4c5b3451f3f0866ec3e057bc2b9c8b29d36337e1f7277323eff596ba09ca34be
Index: KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.sourcelink.json
===================================================================
--- KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.sourcelink.json	(revision 1dcdb2cfb56ccfd57525e0cd573a289cead0870b)
+++ KernelRecordsMVC.Web/obj/Debug/net8.0/KernelRecordsMVC.Web.sourcelink.json	(revision 6886d95c0595c53dde86bf06e0c23d101ba2c777)
@@ -1,1 +1,1 @@
-{"documents":{"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\*":"https://raw.githubusercontent.com/mmilevski/kernelrecords/595d2e58cf322a776ba1d3cedcb86e9bb2ee8093/*"}}
+{"documents":{"C:\\Users\\Marko\\RiderProjects\\KernelRecordsMVC\\*":"https://raw.githubusercontent.com/mmilevski/kernelrecords/1dcdb2cfb56ccfd57525e0cd573a289cead0870b/*"}}
