@extends('layouts.main-layout')
@section('header')
@if(Auth::user())
{{ auth()->user()->full_name }}
@endif
@stop
@section('footer', true)
@section('header-logo')
{{asset('img/logos/titus-trust.svg')}}
@stop
@section('footer-logo')
{{asset('img/logos/titus-trust-footer.svg')}}
@stop
@section('content')
Page not found
{{ isset($exception) && $exception instanceof \App\Exceptions\PortalDetailedPageNotFoundHttpException ? $exception->getMessage() : '' }}
@if(Auth::user())
If you would like to log into another account click
@endif
@endsection