@extends('layouts.master') @section('content') @include('common/alert')

{{Lang::get('common.changepassword.navigation.button.label')}}

{{Lang::get('common.changePassword.info.title')}}

{{ Form::open() }} {{ Form::label("password", Lang::get('common.newPassword.label')) }}
{{ Form::password("password", array('class'=>'form-control')) }}
{{ Form::label("password_confirmation", Lang::get('common.newPasswordRepeat.label')) }}
{{ Form::password("password_confirmation", array('class'=>'form-control')) }}

{{ Form::submit(Lang::get('common.changePassword.button.label'), array('class'=>'btn btn-lg btn-primary btn-block')) }} {{ Form::close() }}
@stop