@extends('layouts.app') @section('title', 'Welcome') @section('content')

Welcome to Laravel Auth System

A custom authentication system with user and admin roles

@auth @if(Auth::user()->isAdmin()) Go to Admin Dashboard{{Auth::user()->username}} @else Go to Dashboard @endif @else Login Register @endauth
@endsection