@extends('layouts.app')
@section('title', 'Change Password')
@section('breadcrumb')
@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
@endsection