@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") }}
@if(\App\Providers\AuthServiceProvider::user_has_permission(\App\Providers\AuthServiceProvider::CSMCCT))
@if($hide_create_request_btn)
@include('shared.grids._grid_wrapper')
@else
@include('shared.grids._grid_wrapper', ['grid_header_button' => 'Create Request',
'grid_header_button_action' => action('WebsiteRequestController@create', compact('business')) ])
@endif
@else
@include('shared.grids._grid_wrapper')
@endif
@endsection
@section('page_style')
@endsection
@section('page_script')
@include('shared_script._website_sidebar_script')
@endsection