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

Entry Forms

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

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

@endif

Form List

@foreach($forms as $row) @endforeach @if (count($forms) === 0) @endif
SI#. Form Name
{{ $row->id }} {{ $row->name }}

No matching records found
@include('layouts.right_sidebar')
@stop {{-- page level scripts --}} @section('footer_scripts') @stop