2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2017-08-22 12:09:04 -07:00
|
|
|
{{ trans('general.changepassword') }}
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Account page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
2017-08-22 12:09:04 -07:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
|
|
|
{{ Form::open(['method' => 'POST', 'files' => true, 'class' => 'form-horizontal', 'autocomplete' => 'off']) }}
|
2016-03-25 01:18:05 -07:00
|
|
|
<!-- CSRF Token -->
|
2017-08-22 12:09:04 -07:00
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
|
|
<div class="box box-default">
|
|
|
|
<div class="box-body">
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<!-- Old Password -->
|
2017-08-22 12:09:04 -07:00
|
|
|
<div class="form-group {{ $errors->has('current_password') ? ' has-error' : '' }}">
|
|
|
|
<label for="current_password" class="col-md-3 control-label">Current Password
|
2016-03-25 01:18:05 -07:00
|
|
|
</label>
|
2017-11-02 17:13:06 -07:00
|
|
|
<div class="col-md-5 required">
|
2017-08-22 12:09:04 -07:00
|
|
|
<input class="form-control" type="password" name="current_password" id="current_password" {{ (config('app.lock_passwords') ? ' disabled' : '') }}>
|
|
|
|
{!! $errors->first('current_password', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group {{ $errors->has('password') ? ' has-error' : '' }}">
|
2017-11-02 17:13:06 -07:00
|
|
|
<label for="password" class="col-md-3 control-label">New Password</label>
|
|
|
|
<div class="col-md-5 required">
|
2016-03-25 01:18:05 -07:00
|
|
|
<input class="form-control" type="password" name="password" id="password" {{ (config('app.lock_passwords') ? ' disabled' : '') }}>
|
|
|
|
{!! $errors->first('password', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group {{ $errors->has('password_confirm') ? ' has-error' : '' }}">
|
2017-11-02 17:13:06 -07:00
|
|
|
<label for="password_confirm" class="col-md-3 control-label">New Password</label>
|
|
|
|
<div class="col-md-5 required">
|
2016-03-25 01:18:05 -07:00
|
|
|
<input class="form-control" type="password" name="password_confirm" id="password_confirm" {{ (config('app.lock_passwords') ? ' disabled' : '') }}>
|
|
|
|
{!! $errors->first('password_confirm', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
|
|
@if (config('app.lock_passwords'))
|
|
|
|
<p class="help-block">{{ trans('admin/users/table.lock_passwords') }}</p>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-08-22 12:09:04 -07:00
|
|
|
</div> <!-- .box-body -->
|
|
|
|
<div class="box-footer text-right">
|
|
|
|
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
|
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white"></i> {{ trans('general.save') }}</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div> <!-- .box-default -->
|
|
|
|
{{ Form::close() }}
|
|
|
|
</div> <!-- .col-md-9 -->
|
|
|
|
</div> <!-- .row-->
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|