@extends('layouts.admin') @section('content')
{{ __('Manage Forms') }}
@include('includes.admin.form-success') {{-- Add New Form Button --}}
{{ __('Add New Form') }}
{{-- Forms Table --}}
@forelse ($forms as $form) @empty @endforelse
{{ __('Form Name') }} {{ __('Category') }} {{ __('Created At') }} {{ __('Actions') }}
{{ $form->name }} {{ $form->category->title ?? __('Uncategorized') }} {{ $form->created_at->format('d M Y') }} {{ __('Edit') }} {{ __('View') }} {{ __('Delete') }} {{ __('Show') }}
{{ __('No forms found.') }}
@endsection @section('scripts') @endsection