Including Subviews

Include a Blade view from within another view.
All variables that are available to the parent view are also available to the included view

<div>
    <!-- resources/views/shared/errors/blade.php -->
    @include('shared.errors')
    <form>
        <!-- Form Contents -->
    </form>
</div>
Comments