@extends('layouts.app') @section('content')
@if($is_admin == 1)

Welcome to the Admin Dashboard

@else

Welcome Back {{$fullname}}!

@endif
@if($is_admin == 0)
📝 All Forms

You have total {{ $formCount }} Forms

View Forms
@endif @if($is_admin == 1)
📝 Forms

{{ $formCount }}

Manage Forms
📬 Submissions

{{ $submissionCount }}

View Submissions
👤 Users

{{ $userCount }}

Manage Users
@endif
@endsection