Laravel Blade Templates: Including Sub-Views

<div>
    @include('shared.errors')

    <form>
        <!-- Form Contents -->
    </form>
</div>
@include('view.name', ['some' => 'data'])
@includeIf('view.name', ['some' => 'data'])
@includeWhen($boolean, 'view.name', ['some' => 'data'])
@includeFirst(['custom.admin', 'admin'], ['some' => 'data'])

Rendering Views For Collections

@each('view.name', $jobs, 'job')
@each('view.name', $jobs, 'job', 'view.empty')

Views rendered via @each do not inherit the variables from the parent view.

Laravel Blade Templates: Including Sub-Views — Structure map

Clickable & Draggable!

Laravel Blade Templates: Including Sub-Views — Related pages: