@extends('backend.layout.master-tailwind') @section('title', __('All Custom Forms')) @section('admin_styles') @endsection @section('content')

{{ __('Custom Forms') }}

{{ __('Build and manage contact and custom forms') }}

{{-- Forms table --}}
@can('form-bulk-delete') @endcan
@can('form-bulk-delete') @endcan @forelse($all_forms as $form) @can('form-bulk-delete') @endcan @empty @endforelse
{{ __('ID') }} {{ __('Title') }} {{ __('Actions') }}
#{{ $form->id }} {{ $form->title }}
@can('form-edit') @endcan @can('form-delete')
@csrf
@endcan
{{ __('No forms found') }}
{{-- Add New Form --}}
@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Add New Form') }}
@csrf
@can('form-add')
@endcan
@endsection @section('script') @endsection