@extends('admin.master') @section('title', 'Page Title') @section('sidebar') @parent

This is appended to the master sidebar.

@include('fields.text', ['name' => 'first_name', 'label' => 'First Name', 'value' => 'Some Value']) @foreach($fields as $field) @include(sprintf('fields.%s', $field['type']), $field) @endforeach @endsection @section('content')

This is my body content.

@endsection