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

Welcome to SimpleTicketty

A simple ticketing system with Role-Based Access Control

@auth
Welcome back, {{ auth()->user()->name }}!

You are logged in as: @foreach(auth()->user()->roles as $role) {{ $role->name }} @endforeach

Go to Tickets @else
Get Started

Please log in to access the ticketing system.

@endauth
@endsection