@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']) }}
{{ 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
{{ Form::close() }}
@stop