@extends('superadmin.layout.page') @section('css') @endsection @section('content')

Vertical Form Management

@if ($message = session('success'))
{{ $message }}
@endif @if ($message = session('error'))
{{ $message }}
@endif

Vertical Form Table

@foreach ($FormData as $key => $item) @endforeach
Form Name Preview Status Action
{{ $item['form_name'] }} @if($item['status'] == 1) Active @else Inactive @endif
@endsection @section('scripts') @endsection