You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
@extends('layouts.app')
|
|
|
|
@section('title', __('auth.change_password'))
|
|
|
|
@section('content')
|
|
<ul class="breadcrumb hidden-print">
|
|
<li class="active">{{ __('auth.change_password') }}</li>
|
|
</ul>
|
|
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<div class="panel panel-default">
|
|
{!! Form::open(['route' => 'auth.change-password', 'method' => 'patch']) !!}
|
|
<div class="panel-body">
|
|
{!! FormField::password('old_password', ['label' => false, 'placeholder' => __('auth.old_password')]) !!}
|
|
{!! FormField::password('password', ['label' => false, 'placeholder' => __('auth.new_password')]) !!}
|
|
{!! FormField::password('password_confirmation', ['label' => false, 'placeholder' => __('auth.new_password_confirmation')]) !!}
|
|
</div>
|
|
<div class="panel-footer">
|
|
{!! Form::submit(__('auth.change_password'), ['class' => 'btn btn-info']) !!}
|
|
{!! link_to_route('home',__('app.cancel'), [], ['class' => 'btn btn-default']) !!}
|
|
</div>
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
@endsection
|