I wanted to give option to create users for Admin without using Registration form.
Do I need to change existing methods and forms ? How do I store password with encryption same as in default registration option. what is the best way to do it?
UserController class is already created using
php artisan make:controller PhotoController
class UserController extends Controller {
public function create()
{
$users = User::get();
return view('user.index', compact('users'));
}
public function store()
{
$input = Request::all();
........
}
}