@extends('layouts.app') @section('title', __('app.change_password')) @section('controller-data', 'users') @section('breadcrumb') @endsection @section('content')
@include('flash-message')
@method('PATCH') @csrf
{!! $errors->first('current_password', '

:message

') !!}
{!! $errors->first('password', '

:message

') !!}
{!! $errors->first('password_confirmation', '

:message

') !!}
{{ strtoupper(__('app.cancel')) }}
@endsection