@extends('layouts.master') @section('title', 'Reset Password | ITVJP.COM') @section('style-libraries') @stop @section('styles') @stop @section('content')


{{ __('Change Password') }}

{!! csrf_field() !!} @if(isset($error))

{{ __('website.notify') }}

{{ $error }}

@endif @if(isset($success))

{{ __('website.notify') }}

{{ $success }}

@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($errors->has('re-password'))
{{ $errors->first('re-password') }}
@endif
@endsection @section('scripts') @if(isset($success)) @endif @stop