I need to create admin backend-cakephp3

I need to create admin backend in my cakephp3 project.I have one user in my cake-app, but he can login/loguot, change same data, fill tables, etc…now I want to create separate admin bacend for same actions!Can anyone give me some redirecions or pass me link about tutorial or video??

You can use prefix routing to create something like an admin area in your app:

http://book.cakephp.org/3.0/en/development/routing.html#prefix-routing

There’s not really anything special about it other than that. You just create a new layout for the backend and assign it to the views you intend for the backend.

tnx ali, i will try…