@extends('layouts.app') @section('title') Settings @endsection @section('content')
User Settings
@if (session()->has('error'))
{{ session()->get('error') }}
@endif @if (session()->has('message'))
{{ session()->get('message') }}
@endif

Username: {{ Auth::user()->username }}
Email: {{ Auth::user()->email }}


@csrf
@error('blurb') {{ $message }} @enderror
@endsection @section('scripts') @endsection