<fieldset> tag should contain legend tag in order the fieldbox to have title
<form action="/action_page.php">
 <fieldset>
  <legend>Personalia:</legend>
  <label for="fname">First name:</label><input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label><input type="text" id="lname" name="lname"><br>
 </fieldset>
</form>h1 {
    height: 500px;
    height: 100vh;
}public function destroy($id)
{
    $post = POST::find($id);
    // Check for correct user
    if (auth()->user()->id !== $post->user_id) {
        return redirect('/posts')->with('error', 'Unauthorized page');
    }
    $post->delete();
    return view('posts')->with('success', 'Post Removed');
}ckeditor package for textareas