@extends('master') @section('title') My Information @stop @section('content')

@include('partials.nav')

Change Password

{{ Form::model($user, ['route' => ['user.change-password', $user->id]]) }}
{{ Form::password('password') }}
{{ Form::password('new_password') }}
{{ Form::hidden('user', $user->id) }} {{ Form::submit('Save', ['class' => 'button wideButton tiny radius']) }}
{{ Form::close() }}
@stop @section('scripts') @stop