@extends('adminlte::page') @section('title', 'Raspberry Network | Application Form Management Tool') @section('content_header')

Administration / Forms

@stop @section('js') @stop @section('content')

Available Forms

@if(!$forms->isEmpty()) @foreach($forms as $form) @endforeach
# Form Title Created On Updated On Actions
{{$form->id}} {{$form->formName}} {{$form->created_at}} {{ $form->updated_at }}
@method('DELETE') @csrf
@else
Nothing to see here! Please add some forms first.
@endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop