@extends('layouts.master-without-nav') @section('title') Change Password @endsection @section('content')
{{ $forced ? 'Set a New Password' : 'Change Password' }}

{{ $forced ? 'For security, please choose a new password before continuing.' : 'Update your account password.' }}

@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf
@endsection