то, что вы делаете, даст вам ошибку.Вы можете включить страницы в шаблон и другие подстраницы.это зависит только от того, что вы делаете и как вы это делаете.то, что вы должны были сделать:
//app.layout
<!DOCTYPE html>
<html>
<head>
<title>@yield('title')</title>
<your-css-files>
@yield('styles')
<your-script files>
@yield('scripts')
</head>
<body>
@include('your page')
@yield('content')
</body>
</html>
, то на своих страницах вы делаете:
@extends(app.layout)
@section('content')
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
@include('your page')
@endsection
on the samepage you can call your styles and scripts as
@section('styles')
//css files
@stop
@section('scripts')
// javascript files
@stop