@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.changepassword') }} @stop {{-- Account page content --}} @section('content')
{{ Form::open(['method' => 'POST', 'files' => true, 'class' => 'form-horizontal', 'autocomplete' => 'off']) }}
{!! $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
{{ Form::close() }}
@stop