@extends('layouts.'.((Session::get('user')->CurrentRole === 'Firm Admin')?'admin':'filer').'-dashboard') @section('title') Change Password @stop @section('heading') Change Password @stop @section('content')
{{ Form::open(array('url' => '/auth/changepass','class'=>'form addFormWrap passwordForm','id'=>'changePassword')) }} @if (Session::has('notification')) {{ Session::get('notification') }} @endif

* {{ Form::label('old_password', 'Old Password') }} {{ Form::password('old_password','',array('class'=>'inputStyle')) }} @if($errors->has('old_password'))

{{$errors->first('old_password')}}

@endif

* {{ Form::label('password', 'New Password') }} {{ Form::password('password','',array('class'=>'inputStyle')) }} @if($errors->has('password'))

{{$errors->first('password')}}

@endif

* {{ Form::label('password_confirmation', 'Confirm Password') }} {{ Form::password('password_confirmation','',array('class'=>'inputStyle')) }} @if($errors->has('password_confirmation'))

{{$errors->first('password_confirmation')}}

@endif

   {{ Form::label('security_question', 'Security Question') }} {{ Form::text('security_question','',array('class'=>'inputStyle')) }} @if($errors->has('security_question'))

{{$errors->first('security_question')}}

@endif

   {{ Form::label('security_answer', 'Answer') }} {{ Form::text('security_answer','',array('class'=>'inputStyle')) }} @if($errors->has('security_answer'))

{{$errors->first('security_answer')}}

@endif

   {{ Form::submit('Change Password', array('class'=>'btn btn-medium btn-bluebg')) }}

{{ Form::close() }}
@stop @section('scripts_bottom') @stop