@extends('layouts.master')
@section('page_title', "PAGE TITLE")
@section('content')
{{--add the id if you're going to need specialized CSS for this form--}}
{{ Form::page_header("PAGE TITLE", "paper_stack") }}
{{-- use grid_label if you need a label inside the grid --}}
{{-- use grid_button if you need a tiny button inside the grid. Ex: My Requests --}}
{{-- use grid_header_button if you need a big button above the grid--}}
@include('shared.grids._grid_wrapper', ['grid_label' => 'GRID LABEL',
'grid_button' => 'GRID BUTTON', 'grid_button_action' => action('ZZZController@my_action'),
'grid_header_button' => 'GRID BUTTON', 'grid_header_button_action' => action('ZZZController@my_action')
])
@endsection
@section('page_style')
@endsection
@section('page_script')
@endsection