@yield('meta')
@guest
{{ setting('business.name', config('app.name', 'SwiftPay')) }}
@endguest @auth
@if(auth()->user()->profile_picture) {{ auth()->user()->first_name }} @else
{{ strtoupper(substr(auth()->user()->first_name, 0, 1)) }}
@endif

Welcome back

{{ auth()->user()->first_name }} {{ auth()->user()->last_name }}

Priority
@endauth
@auth @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @endauth @yield('content')
@auth @endauth
@stack('scripts')