@extends('layouts/default') {{-- Page title --}} @section('title') Change your Password @stop {{-- Account page content --}} @section('content')

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

{!! $errors->first('old_password', ' :message') !!}
{!! $errors->first('password', ' :message') !!}
{!! $errors->first('password_confirm', ' :message') !!} @if (config('app.lock_passwords'))

{{ trans('admin/users/table.lock_passwords') }}

@endif

{{ trans('button.cancel') }}
@stop