@extends('layouts.app') @section('title', 'Change Password') @section('content')
@include('workspace.topbar', ['standalone' => true])
@if (auth()->user()->must_change_password)

You must change your password before continuing.

@endif

Change password

@csrf
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@if (! auth()->user()->must_change_password) @endif
@endsection