diff --git a/app/Console/Commands/stubs/view.stub b/app/Console/Commands/stubs/view.stub
deleted file mode 100755
index d34ad44c7ca9..000000000000
--- a/app/Console/Commands/stubs/view.stub
+++ /dev/null
@@ -1,47 +0,0 @@
-@extends('header')
-
-@section('content')
-
- {!! Former::open($url)
- ->addClass('col-md-10 col-md-offset-1 warn-on-exit')
- ->method($method)
- ->rules([]) !!}
-
- @if ($$LOWER_NAME$)
- {!! Former::populate($$LOWER_NAME$) !!}
-
- {!! Former::text('public_id') !!}
-
- @endif
-
-
-
-
-
-
-
- $FORM_FIELDS$
-
-
-
-
-
-
-
-
-
- {!! Button::normal(trans('texts.cancel'))
- ->large()
- ->asLinkTo(URL::to('/$LOWER_NAME$'))
- ->appendIcon(Icon::create('remove-circle')) !!}
-
- {!! Button::success(trans('texts.save'))
- ->submit()
- ->large()
- ->appendIcon(Icon::create('floppy-disk')) !!}
-
-
-
- {!! Former::close() !!}
-
-@stop
diff --git a/app/Console/Commands/stubs/views/edit.stub b/app/Console/Commands/stubs/views/edit.stub
deleted file mode 100755
index 024e2bf9e57c..000000000000
--- a/app/Console/Commands/stubs/views/edit.stub
+++ /dev/null
@@ -1,47 +0,0 @@
-@extends('header')
-
-@section('content')
-
- {!! Former::open($url)
- ->addClass('col-md-10 col-md-offset-1 warn-on-exit')
- ->method($method)
- ->rules([]) !!}
-
- @if ($$LOWER_NAME$)
- {!! Former::populate($$LOWER_NAME$) !!}
-
- {!! Former::text('public_id') !!}
-
- @endif
-
-
-
-
-
- {!! Button::normal(trans('texts.cancel'))
- ->large()
- ->asLinkTo(URL::to('/$LOWER_NAME$'))
- ->appendIcon(Icon::create('remove-circle')) !!}
-
- {!! Button::success(trans('texts.save'))
- ->submit()
- ->large()
- ->appendIcon(Icon::create('floppy-disk')) !!}
-
-
-
- {!! Former::close() !!}
-
-@stop