@extends('layouts.app') @section('title', 'Change Password') @section('breadcrumb') @endsection @section('content')
@if(auth()->user()->force_password_change)
You are required to change your password before continuing.
@endif
@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
@if(!auth()->user()->force_password_change) Cancel @endif
@endsection