@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Available forms')) @section('content_header')

{{__('Administration')}} / {{__('Forms')}}

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

{{__('Available forms')}}

@if(!$forms->isEmpty()) @foreach($forms as $form) @endforeach
# {{__('Title')}} {{__('Created at')}} {{__('Updated at')}} {{__('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