@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Account - Change Password @endsection @section('content')

Change Password - {{$userdata->display_name}}

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@csrf
@if ($errors->has('password')) {{ $errors->first('new_password') }} @endif
@endsection @section('custom_js') @endsection