diff --git a/src/stubs/resources/views/full/show-formfield.stub b/src/stubs/resources/views/full/show-formfield.stub
new file mode 100644
index 0000000..d115485
--- /dev/null
+++ b/src/stubs/resources/views/full/show-formfield.stub
@@ -0,0 +1,25 @@
+@extends('layouts.app')
+
+@section('title', __('master.detail'))
+
+@section('content')
+
+
+
+
{{ __('master.detail') }}
+
+
+ | {{ __('master.name') }} | {{ $singleMstr->name }} |
+ | {{ __('master.description') }} | {{ $singleMstr->description }} |
+
+
+
+
+
+
+@endsection
diff --git a/src/stubs/resources/views/full/show.stub b/src/stubs/resources/views/full/show.stub
index d115485..c391b93 100644
--- a/src/stubs/resources/views/full/show.stub
+++ b/src/stubs/resources/views/full/show.stub
@@ -15,9 +15,9 @@
diff --git a/tests/Generators/ViewsGeneratorTest.php b/tests/Generators/ViewsGeneratorTest.php
index 744d9d1..0dc7eec 100644
--- a/tests/Generators/ViewsGeneratorTest.php
+++ b/tests/Generators/ViewsGeneratorTest.php
@@ -100,9 +100,9 @@ class ViewsGeneratorTest extends TestCase