Made Profile & Account Settings functional

Also moved redundant HTML markup to component file for reuse.
Username to UUID converter also added as Middleware
This commit is contained in:
2020-05-13 22:47:51 +01:00
parent 7635f8e2f4
commit 2ff0da3e4f
33 changed files with 799 additions and 258 deletions

View File

@@ -0,0 +1,23 @@
<!-- I begin to speak only when I am certain what I will say is not better left unsaid - Cato the Younger -->
@if (session()->has('success'))
<script>
toastr.success("{{session('success')}}")
</script>
@elseif(session()->has('error'))
<script>
toastr.error("{{session('error')}}")
</script>
@elseif($errors->any())
@foreach($errors->all() as $error)
<script>
toastr.error('{{$error}}')
</script>
@endforeach
@endif