@extends('business_owner.layouts.master') @section('title', __('backend.change_password')) @section('content')

{{ __('backend.change_password') }}

{{ __('backend.dashboard') }} / {{ __('backend.change_password') }}
{!! Form::open(['route' => ['businessOwner-update-password'], 'method' => 'POST','name' => 'edit_password', 'id' => 'edit_password', 'autocomplete' => 'off','class'=>'form-horizontal']) !!}
@if(Session::has('errorMessageCurrentPassword')) {{ Session::get('errorMessageCurrentPassword') }} @endif
@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
{!! __('backend.cancel') !!}
{{Form::close()}}
@endsection