@extends('backend.layout.master') @section('title', __('All Custom Form')) @section('style') @endsection @section('content')

{{ __('All Custom Form') }}

@can('form-bulk-delete') @endcan
@foreach ($all_forms as $form) @endforeach
{{ __('ID') }} {{ __('Title') }} {{ __('Receiving Email') }} {{ __('Action') }}
{{ $form->id }} {{ $form->title }} {{ $form->email }}

{{ __('Add New Form') }}

@csrf
@can('form-add') @endcan
@endsection @section('script') @endsection