@extends('layouts/default') {{-- Page title --}} @section('title') @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Utilities

@if(Session::has('message'))

{{ Session::get('message') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Utilities

@stop {{-- page level scripts --}} @section('footer_scripts') @stop