General Form

@if (session()->has('message')) @endif
@error('insurance_company_id') {{ $message }} @enderror
@error('form_label') {{ $message }} @enderror
@error('file') {{ $message }} @enderror
@if (session()->has('error'))
{{ session('error') }}
@endif
@if($search)
Search results for: "{{ $search }}"
@endif
@if(isset($formlist) && $formlist->isEmpty()) @else @foreach ($formlist as $index => $form) @endforeach @endif
# Type Insurance Company Label Actions
No data found
{{ $formlist->firstItem() + $index }} {{ $form->type === 'insurance' ? 'Insurance' : 'General' }} @if($form->type === 'insurance' && isset($form->insuranceCompany)) {{ $form->insuranceCompany->company_name }} @else N/A @endif {{ $form->form_label }} @if (auth()->user()->role == \App\Models\User::ROLE_ADMIN) @endif
{{ $formlist->links() }}