@extends('templates.backend') @section('page-title', isset($page_title) ? $page_title : 'Create User') @section('breadcrumbs') {!! App\Helpers\Breadcrumbs::generate([ 'Users' => ['backend.users.index'], $user->username => ['backend.users.show', $user->id], 'Change Password' => null, ]); !!} @stop @section('content') {!! Form::model($user, ['route' => ['backend.users.change_password.post', $user->id], 'autocomplete' => 'off']) !!}
@include('backend.users.partials.password_and_confirmation')
{!! Form::submit('Update Password', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!} @stop