@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.changepassword') }} @stop {{-- Account page content --}} @section('content')
{!! $errors->first('current_password', '') !!} @if (config('app.lock_passwords')===true)

{{ trans('general.feature_disabled') }}

@endif
{!! $errors->first('password', '') !!} @if (config('app.lock_passwords')===true)

{{ trans('general.feature_disabled') }}

@endif
{!! $errors->first('password_confirmation', '') !!} @if (config('app.lock_passwords')===true)

{{ trans('general.feature_disabled') }}

@endif
@stop