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