@extends('dashboard.layouts.master') @section('title', 'Change Password - Step 3') @section('content')

Change Password

{{ __('backend.dashboard') }} / Change Password
{!! Form::open(['route' => ['admin-change-password-update-with-otp'], 'method' => 'POST','name' => 'edit_password', 'id' => 'edit_password', 'autocomplete' => 'off','class'=>'form-horizontal']) !!}
@if(Session::has('errorMessageNewPassword')) {{ Session::get('errorMessageNewPassword') }} @endif
Note : New Password must contain at least 1 uppercase letter, 1 lowercase letter, 1 number, 1 special character, and be at least 8 characters long
@if(Session::has('errorMessageConformPassword')) {{ Session::get('errorMessageConformPassword') }} @endif
{{Form::close()}}
@endsection