@extends('layouts.app') @section('styles') @endsection @section('content')
{{ auth()->user()->name ?? '' }}
{{-- User Image --}}
@if(auth()->user()->name) {{ substr(auth()->user()->name, 0, 2) }} @endif
@csrf
@error('password')
{{ $message }}
@enderror
{{ __('Please confirm your password before continuing.') }}
@if(Route::has('password.request')) {{ trans('global.forgot_password') }} @endif
@endsection