@extends('layouts.app') @section('content')

Change Password

@if(auth()->user()->must_change_password)

Password change required

For security, you must set a new password before accessing the system. Your temporary password was provided by your administrator.

@endif @if(session('success'))

{{ session('success') }}

@endif @if(session('warning'))

{{ session('warning') }}

@endif
@csrf
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@endsection