diff --git a/docs/pages/developing-extensions/Admin-views.md b/docs/pages/developing-extensions/Admin-views.md
index 14e4796..3398d37 100644
--- a/docs/pages/developing-extensions/Admin-views.md
+++ b/docs/pages/developing-extensions/Admin-views.md
@@ -33,9 +33,9 @@ The Barebones template includes two files by default, `conf.yml` and `view.blade
-You might have already noticed that `{name}`, `{identifier}` and `{version}` have been replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/placeholders), which you can find documentation for [on this page](?page=documentation/placeholders).
+You might have already noticed that `{name}`, `{identifier}` and `{version}` are replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/placeholders).
-Right now all lines or on the same row. This is due to how Blueprint builds your admin view internally, as it doesn't handle linebreaks. We can fix this by adding `
` tags at the end of each line.
+Right now, all lines are on the same row. This is due to how HTML is rendered in Blueprint’s admin view, as it doesn’t handle line breaks. We can fix this by adding `
` tags at the end of each line.
@@ -51,9 +51,11 @@ Right now all lines or on the same row. This is due to how Blueprint builds your
-This looks a bit plain, doesn't it? We can spice things up and add a bit of depth with box containers, a fancy title and a much better user experience.
+This looks a bit plain, doesn't it? We can spice things up and add a bit of depth with box containers, a fancy title, and a much better user experience.
-We can achieve this with the `box` css class, which is included in the Pterodactyl admin panel by default. To add a nice color alongside the box, you can make use of the following classes: `box-primary`, `box-info`, `box-success`, `box-warning` and `box-danger`.
+We can achieve this with the `box` CSS class, which is included in the Pterodactyl admin panel by default. To add a nice color alongside the box, you can make use of the following classes: `box-primary`, `box-info`, `box-success`, `box-warning` and `box-danger`.
+
+Here's an example of how you can use these classes to enhance your admin view:
@@ -76,9 +78,9 @@ We can achieve this with the `box` css class, which is included in the Pterodact
-You have now created your very own admin page through Blueprint. Try experimenting a bit with it, and once you are ready, move onto the next guide.
+You have now created your very own admin page through Blueprint. Try experimenting a bit with it, and once you are ready, move on to the next guide to learn how to create custom controllers for your extension.
\ No newline at end of file
+